Week 1 · Launch your environment
- Install Node.js 22.20 LTS and pnpm globally.
- Open VS Code with your bootcamp folder so nothing feels hidden.
- Double-check your setup with quick version checks for Node and pnpm.
Beginner-friendly, live-guided curriculum that takes you from your first TypeScript script to production-ready Node.js projects.
We rely on Node.js 22.20 and pnpm so you can run TypeScript directly—no extra build steps or ts-node required.
Catch up on the first two lessons and see what skills you’ll practice next.
Three phases guide you from fundamentals to a polished capstone.
Master TypeScript essentials, Node scripts, and the tooling you will use throughout the course.
Design HTTP APIs, add automated tests, and explore how databases fit into Node applications.
Harden your app for production, practice deployment, and polish your final team project.
Keep these close while you work through the lessons and homework.
pnpm init -y
pnpm exec tsc --init
node calculator.ts 10 2Run TypeScript files directly with Node, then lean on the optional typecheck script whenever you need extra confidence.