Skip to content

Instantly share code, notes, and snippets.

View deltoss's full-sized avatar
🐢
The world of code sure is vast...

Michael deltoss

🐢
The world of code sure is vast...
View GitHub Profile
@deltoss
deltoss / SSH on Windows.md
Last active June 18, 2025 00:58
How to set up SSH keys on a Windows machine.

SSH on Windows

🔑 Generating SSH Keys with OpenSSH

  1. Open a terminal in the directory where you want to save your key.

  2. Run this command to generate a new SSH key:

ssh-keygen -t ed25519 -C "Your Key Name"

@tracker1
tracker1 / 01-directory-structure.md
Last active May 3, 2025 04:36
Anatomy of a JavaScript/Node project.

Directory structure for JavaScript/Node Projects

While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.

Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.

Directories

  • lib/ is intended for code that can run as-is
  • src/ is intended for code that needs to be manipulated before it can be used