~//tutorials/node
Node.js
Run JavaScript anywhere.
- 01What is Node.js?Meet Node.js — a JavaScript runtime that runs outside the browser.beginner
- 02Install & SetupInstall Node.js, pick a version manager, and run your first script.beginner
- 03Modules: CommonJS vs ESMSplit code into modules with require or import/export.beginner
- 04npm & package.jsonManage dependencies, scripts, and versions with npm.beginner
- 05Working with FilesRead and write files with the promise-based fs API.beginner
- 06Building an HTTP ServerCreate a web server with Node's built-in http module.intermediate
- 07Express BasicsBuild routes and middleware with the most popular Node framework.intermediate
- 08Async Patterns & ErrorsCallbacks, promises, async/await, and how to handle failures.intermediate
- 09Environment & ConfigKeep secrets and settings out of your code with environment variables.intermediate
- 10Node.js Best PracticesProject structure, security, and patterns for production Node apps.advanced