Web Archtkt.
Open Source NodeJS Guides
- NodeJS
- 5 links
- 2 min read
- Become a Node.js developer is a free ebook by Thomas Gentilhomme (fraxken), a Node.js core collaborator. It is a structured learning path that goes from JavaScript fundamentals and the event loop to streams, modules, testing, security and the wider ecosystem, with a large collection of curated links for each topic. It was written mainly for French developers, so the French version is the most complete one, but an English version is also available. fraxken/ebook_nodejs
- Node.js Guidelines is a set of tips, tricks and resources from Microsoft for working with Node.js, with a focus on Microsoft platforms: Windows development environment, Visual Studio Code, debugging, Azure and the ecosystem of tools that goes with them. It also collects general advice to get started and to avoid the most common pitfalls. This repository is now archived. microsoft/nodejs-guidelines
- Node.js Masterclass is the example code of the Node.js masterclass given by Matteo Collina and the Platformatic team. Each folder is a small runnable lesson on an architectural topic: the dangers of global state and singletons shared between modules, dependency injection, Fastify plugins and encapsulation, testing with the built-in test runner or Vitest instead of Jest, and a simple application deployed with Platformatic. platformatic/node-masterclass
- Node.js Best Practices by Yoni Goldberg is the current home of the most popular best practices guide for Node.js. It is regularly updated for modern Node.js with more than 100 practices on architecture, error handling, testing, production, security, performance and Docker, each one with examples and quotes from the community. A must-read for any team that runs Node.js in production. goldbergyoni/nodebestpractices
- The High-Performance Node Workshop is a hands-on workshop by Platformatic based on the expertise of Node.js core contributor Matteo Collina. It teaches the advanced techniques needed to run Node.js applications in production: event loop optimization, caching strategies, promise pitfalls and alternatives, worker threads and multithreading, production metrics and monitoring, and OpenTelemetry integration. platformatic/the-high-performance-node-workshop