⌨️ Quick Command Reference
| Task | Command |
|---|---|
| Create folders | mkdir backend frontend |
| Init backend | npm init -y |
| Backend deps | npm install express mongoose dotenv cors |
| Nodemon | npm install --save-dev nodemon |
| Init frontend | npm create vite@latest or npx create-react-app . |
| Frontend deps | npm install axios react-router-dom |
| Start backend | npm run dev |
| Start frontend | npm run dev or npm start |
| Run both | npm run dev (with concurrently) |
Ready to code!
-
Copy-paste these sections into your Obsidian vault.
-
Use collapsibles for step-by-step reference during dev.