A minimal Node.js playground. This project serves as a base for experimenting with various Node.js concepts in isolated Git branches.
Each experiment or "lab" is developed in its own branch, branching off from this main starter.
This main branch includes:
- A basic
index.jsfile with a simple Express server - Minimal dependencies
- No TypeScript — we'll add that in specific lab branches
-
Clone the repo:
git clone https://github.com/chuksemmanuel/node-lab.git cd node-lab -
Install dependencies:
npm install
-
Run the app:
node index.js
Each experiment lives in a separate branch:
| Branch | Description |
|---|---|
main |
Vanilla Node.js with Express |
Run
git checkout <branch-name>to switch to a specific lab.