๐ŸŒ
GitHub
github.com โ€บ nodejs โ€บ node
GitHub - nodejs/node: Node.js JavaScript runtime โœจ๐Ÿข๐Ÿš€โœจ
January 27, 2026 - Binaries, installers, and source tarballs are available at https://nodejs.org/en/download/. ... The latest directory is an alias for the latest Current release. The latest-codename directory is an alias for the latest release from an LTS line. For example, the latest-hydrogen directory contains the latest Hydrogen (Node.js 18) release.
Starred by 116K users
Forked by 35.2K users
Languages ย  JavaScript 63.1% | C++ 22.9% | Python 9.8% | C 2.6% | HTML 0.6% | Shell 0.5%
๐ŸŒ
Node.js
nodejs.org โ€บ en
Node.js โ€” Run JavaScript Everywhere
// server.mjs import { createServer } from 'node:http'; const server = createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World!\n'); }); // starts a simple http server locally on port 3000 ...
๐ŸŒ
OpenGenus
iq.opengenus.org โ€บ list-of-node-js-projects
31 Node.js Projects [with source code]
April 30, 2023 - It was built using Node.js, MongoDB, and React.js. The backend uses Express.js and Mongoose for handling data, while the frontend is built with React and Redux. ... Concepts involved: RESTful API development, user authentication and authorization, database design and management, data modeling, frontend development using React and Redux. ๐Ÿ‘‰Source code: https://github.com/bradtraversy/devconnector_2.0
๐ŸŒ
Medium
medium.com โ€บ @Trott โ€บ a-quick-guide-to-reading-node-js-core-source-c968d83e4194
A Quick Guide To Reading Node.js Core Source | by Rich Trott | Medium
April 1, 2016 - The source code can be found at https://github.com/nodejs/node. This assumes that you are a JavaScript developer approaching the project. If you are a C++ programmer, for example, your path will likely be different.
๐ŸŒ
GitHub
github.com โ€บ nodejs โ€บ nodejs.org
GitHub - nodejs/nodejs.org: The Node.jsยฎ Website
Nodejs.org, maintained by the OpenJS Foundation, is the official website for the Node.jsยฎ JavaScript runtime. This repo is the source code for the website.
Starred by 6.8K users
Forked by 6.5K users
Languages ย  TypeScript 45.2% | MDX 32.9% | JavaScript 15.4% | CSS 4.7% | Shell 1.8% | HTML 0.0%
๐ŸŒ
Node.js
nodejs.org โ€บ en โ€บ about โ€บ previous-releases
Node.js โ€” Node.js Releases
Full details regarding the Node.js release schedule are available on GitHub.
Find elsewhere
๐ŸŒ
Node.js
nodejs.org โ€บ en โ€บ learn โ€บ getting-started โ€บ introduction-to-nodejs
Node.js โ€” Introduction to Node.js
Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project! Node.js runs the V8 JavaScript engine, the core of Google Chrome, outside of the browser.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ node.js โ€บ nodejs-projects
45+ Node.js Projects with Source Code - 2025 - GeeksforGeeks
February 28, 2026 - Node.js is a widely used JavaScript runtime for building web apps, real-time applications, APIs, and microservices due to its high performance, scalability, and non-blocking I/O.
๐ŸŒ
Visual Studio Code
code.visualstudio.com โ€บ docs โ€บ nodejs โ€บ nodejs-tutorial
Node.js tutorial in Visual Studio Code
November 3, 2021 - The Visual Studio Code editor has great support for writing and debugging Node.js applications. This tutorial takes you from Hello World to a full Express web application.
๐ŸŒ
Microsoft Learn
learn.microsoft.com โ€บ en-us โ€บ windows โ€บ dev-environment โ€บ javascript โ€บ nodejs-beginners-tutorial
Set up Node.js on native Windows | Microsoft Learn
There are two ways to do this: 1) using iisnode or directly. We do not maintain these resources and recommend using Linux servers to host your Node.js apps. Collaborate with us on GitHub The source for this content can be found on GitHub, where you can also create and review issues and pull requests.
๐ŸŒ
npm
npmjs.com
npm | Home
We're GitHub, the company behind the npm Registry and npm CLI. We offer those to the community for free, but our day job is building and selling useful tools for developers like you ยท Get started today for free, or step up to npm Pro to enjoy a premium JavaScript development experience, with ...
๐ŸŒ
GitHub
github.com โ€บ sqreen โ€บ awesome-nodejs-projects
GitHub - sqreen/awesome-nodejs-projects: Curated list of awesome open-source applications made with Node.js ยท GitHub
Hackathon Starter - A boilerplate for Node.js web applications. Node-RED - A visual tool for wiring the Internet of Things ยท nscm - An open-source CLI tool for working with NodeSource Certified Modules ... Atom (website) - Fully hackable text editor using Chrome. Visual Studio Code (website) ...
Starred by 5.6K users
Forked by 600 users
๐ŸŒ
GitHub
github.com โ€บ nodejs
Node.js ยท GitHub
Node.js has 231 repositories available. Follow their code on GitHub.
๐ŸŒ
NodeSource
nodesource.com
For mission-critical Node.js applications - NodeSource
NodeSource Extended Support for N|Solid Runtime delivers the stability you need to keep your Node.js applications secure and efficient. ... N|Solid is a tremendously efficient and secure runtime. After only a few weeks, it helped us troubleshoot a nasty memory leak.โ€” Mastercard โ€” ยท At NASA, mission-critical code is the rule, not the exception.
JavaScript runtime environment
Node.js is a cross-platform, open-source JavaScript runtime environment that can run on Windows, Linux, Unix, macOS, and more. Node.js runs on the V8 JavaScript engine, and executes JavaScript code outside a web โ€ฆ Wikipedia
Factsheet
Original author Ryan Dahl
Initial release May 27, 2009; 16 years ago (2009-05-27)
Factsheet
Original author Ryan Dahl
Initial release May 27, 2009; 16 years ago (2009-05-27)
๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ Node.js
Node.js - Wikipedia
1 week ago - Written in C++, V8 compiles JavaScript source code to native machine code at runtime. As of 2016, it also includes Ignition, a bytecode interpreter. npm is the pre-installed package manager for the Node.js server platform.