A cross-platform utility to generate SSH keys with a single command, perfect for developers setting up Git authentication
View project (github.com)Read the Dev.to article: https://dev.to/eliasfloreteng/generate-ssh-keys-effortlessly-with-generate-ssh-key-1g8p
Have you ever struggled with setting up SSH keys for your Git repositories? Or maybe you're tired of explaining the process to new team members? I've created a simple utility that makes this process a breeze!
Hi! I'm Elias Floreteng, and I built this tool after noticing how many developers struggle with SSH key setup, especially when onboarding new team members. I wanted to create something that would make this process completely painless for everyone.
generate-ssh-key
is a cross-platform Node.js utility that generates ED25519 SSH keys with a single command. It handles all the complexities of SSH key generation, including:
.ssh
directory with proper permissions
It's as simple as running:
npx generate-ssh-key
That's it! The tool will guide you through the rest of the process.
Works seamlessly on Windows, macOS, and Linux, handling platform-specific requirements automatically.
On Windows, it checks if OpenSSH is installed and helps you install it if needed.
Your public key is automatically copied to your clipboard, ready to be pasted into GitHub, GitLab, or any other service.
If you're in a Git repository, it can automatically convert your remote URLs from HTTPS to SSH format.
The utility generates ED25519 keys by default because they're:
The tool provides clear instructions for:
The utility is built with Node.js and uses several key packages:
chalk
for colorful console output
inquirer
for interactive prompts
which
for command availability checking
This is an open-source project! If you'd like to contribute or check out the code, visit the GitHub repository: generate-ssh-key on GitHub
If you use it frequently, you can install it globally:
npm install -g generate-ssh-key
Then use it anywhere with:
generate-ssh-key
Never struggle with SSH key generation again! Try it out and let me know what you think in the comments below. 💬