Node.js

JavaScript runtime environment


title: "Node.js" type: doc version: 1 created: 2026-02-28 author: "Wikipedia contributors" status: active scope: public tags: ["2009-software", "free-software-programmed-in-c++", "free-software-programmed-in-javascript", "javascript-libraries", "joyent", "linux-foundation-projects", "software-using-the-mit-license", "runtime-systems"] description: "JavaScript runtime environment" topic_path: "technology/web" source: "https://en.wikipedia.org/wiki/Node.js" license: "CC BY-SA 4.0" wikipedia_page_id: 0 wikipedia_revision_id: 0

::summary JavaScript runtime environment ::

::data[format=table title="Infobox software"]

FieldValue
nameNode.js
logoNode.js logo.svg
authorRyan Dahl
developerOpenJS Foundation
released
latest release version
latest release date
programming languageJavaScript, C++, Python, C
operating systemz/OS, Linux, macOS, Microsoft Windows, SmartOS, FreeBSD, OpenBSD, IBM AIX
genreRuntime environment
licenseMIT License
::

| name = Node.js | logo = Node.js logo.svg | author = Ryan Dahl | developer = OpenJS Foundation | released = | latest release version = | latest release date = | programming language = JavaScript, C++, Python, C | operating system = z/OS, Linux, macOS, Microsoft Windows, SmartOS, FreeBSD, OpenBSD, IBM AIX | genre = Runtime environment | license = MIT License

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 browser. According to the Stack Overflow Developer Survey, Node.js is one of the most commonly used web technologies.

Node.js lets developers use JavaScript to write command line tools and server-side scripting. The ability to run JavaScript code on the server is often used to generate dynamic web page content before the page is sent to the user's web browser. Consequently, Node.js represents a "JavaScript everywhere" paradigm, unifying web-application development around a single programming language, as opposed to using different languages for the server- versus client-side programming.

Node.js has an event-driven architecture capable of asynchronous I/O. These design choices aim to optimize throughput and scalability in web applications with many input/output operations, as well as for real-time Web applications (e.g., real-time communication programs and browser games).

The Node.js distributed development project was previously governed by the Node.js Foundation, and has now merged with the JS Foundation to form the OpenJS Foundation. OpenJS Foundation is facilitated by the Linux Foundation's Collaborative Projects program.

History

::figure[src="https://upload.wikimedia.org/wikipedia/commons/b/b2/Ryan_Dahl.jpg" caption="Ryan Dahl, creator of Node.js, in 2010" alt=""] ::

::figure[src="https://upload.wikimedia.org/wikipedia/commons/4/47/Node.JS_Mascot.svg" caption="Rocket Turtle, the official mascot of Node.js since February 2024"] ::

Node.js was initially written by Ryan Dahl in 2009, about 13 years after the introduction of the first server-side JavaScript environment, Netscape's LiveWire Pro Web. The initial release supported only Linux and Mac OS X. Its development and maintenance was led by Dahl and later sponsored by Joyent.

Dahl criticized the limited capability of Apache HTTP Server to handle many (10,000+) concurrent connections, as well as the dominant programming paradigm of sequential programming, in which applications could block entire processes or cause the creation of multiple execution stacks for simultaneous connections.

Dahl demonstrated the project at the inaugural European JSConf on November 8, 2009. Node.js combined Google's V8 JavaScript engine, an event loop, and a low-level I/O API.

In January 2010, a package manager was introduced for the Node.js environment called npm. The package manager allows programmers to publish and share Node.js packages, along with the accompanying source code, and is designed to simplify the installation, update and uninstallation of packages.

In June 2011, Microsoft and Joyent implemented a native Windows version of Node.js. The first Node.js build supporting Windows was released in July 2011.

In January 2012, Dahl yielded management of the project to npm creator Isaac Schlueter. In January 2014, Schlueter announced that Timothy J. Fontaine would lead the project.

Io.jsIn December 2014, Fedor Indutny created io.js, a fork of Node.js created because of dissatisfaction with Joyent's governance as an open-governance alternative with a separate technical committee. The goal was to enable a structure that would be more receptive to community input, including the updating of io.js with the latest Google V8 JavaScript engine releases, diverging from Node.js's approach at that time.

The Node.js Foundation, formed to reconcile Node.js and io.js under a unified banner, was announced in February 2015. The merger was realized in September 2015 with Node.js v0.12 and io.js v3.3 combining into Node v4.0. This merge brought V8 ES6 features into Node.js and started a long-term support release cycle. By 2016, the io.js website recommended returning to Node.js and announced no further io.js releases, effectively ending the fork and solidifying the merger's success.

In 2019, the JS Foundation and Node.js Foundation merged to form the OpenJS Foundation.

Branding

The Node.js logo features a green hexagon with overlapping bands to represent the cross-platform nature of the runtime. The Rocket Turtle was chosen as the official Node.js mascot in February 2024 following a design contest.

Overview

Node.js allows the creation of web servers and networking tools using JavaScript and a collection of "modules" that handle various core functionalities. Modules are provided for file system I/O, networking (DNS, HTTP, TCP, TLS/SSL or UDP), binary data (buffers), cryptography functions, data streams and other core functions. Node.js's modules use an API designed to reduce the complexity of writing server applications.

Since version 22.6.0, Node.js natively supports both JavaScript and TypeScript, allowing TypeScript files to be executed without a separate compilation step. The TypeScript support was contributed by Node.js TSC member Marco Ippolito. In addition, many compile-to-JS languages are available, allowing Node.js applications to also be written in CoffeeScript, Dart, ClojureScript, and others.

Node.js is primarily used to build network programs such as web servers. The most significant difference between Node.js and PHP is that most functions in PHP block until completion (commands execute only after previous commands finish), while Node.js functions are non-blocking (commands execute concurrently and use callbacks to signal completion or failure).

Node.js is officially supported by Linux, macOS and Microsoft Windows 8.1 and Server 2012 (and later), with Tier 2 support for SmartOS and IBM AIX and experimental support for FreeBSD. OpenBSD also works, and LTS versions are available for IBM i (AS/400). The source code may also be built on similar operating systems that are not officially supported, such as NonStop OS and Unix servers.

Platform architecture

Node.js enables development of fast web servers in JavaScript using event-driven programming. Developers can create scalable servers without using threading by using a simplified model that uses callbacks to signal the completion of a task. Node.js connects the ease of a scripting language (JavaScript) with the power of Unix network programming.

Node.js was built on top of Google's V8 JavaScript engine since it was open-sourced under the BSD license, and it contains comprehensive support for fundamental protocols such as HTTP, DNS and TCP. JavaScript's existing popularity made Node.js accessible to the web-development community.

Industry support

There are thousands of open-source libraries for Node.js, most of which are hosted on the npm website. Multiple developer conferences and events are held that support the Node.js community, including NodeConf, Node Interactive, and Node Summit, as well as a number of regional events.

The open-source community has developed web frameworks to accelerate the development of applications. Such frameworks include Express.js, Socket.IO, Sails.js, Next.js and Meteor. Various packages have also been created for interfacing with other languages or runtime environments such as Microsoft .NET.

Modern desktop IDEs provide editing and debugging features specifically for Node.js applications. Such IDEs include Atom, Brackets, JetBrains WebStorm, Microsoft Visual Studio (with Node.js Tools for Visual Studio, or TypeScript with Node definitions), NetBeans, Nodeclipse Enide Studio (Eclipse-based) and Visual Studio Code.Hello Visual Studio Code (with NodeJS), Channel 9, Microsoft Node.js Applications with VS Code, Visual Studio Code Some online IDEs also support Node.js, such as Codeanywhere, Eclipse Che, Cloud9 IDE and the visual flow editor in Node-RED.

Node.js is supported across a number of cloud-hosting platforms such as Jelastic, Google Cloud Platform, AWS Elastic Beanstalk, Azure Web Apps and Joyent.

Releases

New major releases of Node.js are cut from the GitHub main branch every six months. Even-numbered versions are cut in April and odd-numbered versions are cut in October. When a new odd version is released, the previous even version undergoes transition to Long Term Support (LTS), which gives that version 12 months of active support from the date it is designated LTS. After these 12 months expire, an LTS release receives an additional 18 months of maintenance support. An active version receives non-breaking backports of changes a few weeks after they land in the current release. A maintenance release receives only critical fixes and documentation updates. The LTS Working Group manages strategy and policy in collaboration with the Technical Steering Committee of the Node.js Foundation.

::data[format=table]

ReleaseStatusCode nameRelease dateMaintenance end
2013-03-112016-10-31
2015-02-062016-12-31
Argon2015-09-082018-04-30
2015-10-292016-06-30
Boron2016-04-262019-04-30
2016-10-252017-06-30
Carbon2017-05-302019-12-31
2017-10-012018-06-30
Dubnium2018-04-242021-04-30
2018-10-232019-06-01
Erbium2019-04-232022-04-30
2019-10-222020-06-01
Fermium2020-04-212023-04-30
2020-10-202021-06-01
Gallium2021-04-202023-09-11
2021-10-192022-06-01
Hydrogen2022-04-192025-04-30
2022-10-182023-06-01
title=Node.JS CODENAMES.mdurl=https://github.com/nodejs/Release/blob/main/CODENAMES.mdaccess-date=6 September 2023
2023-10-172024-06-01
Jod2024-04-242027-04-30
2024-10-152025-06-01
Krypton2025-04-222028-04-30
2025-10-152026-06-01
Lithium20262029
Magnesium20272030
Neon20282031
Oxygen20292032
Platinum20302033
::

Technical details

Node.js is a JavaScript runtime environment that processes incoming requests in a loop, called the event loop.

Internals

Node.js uses libuv under the hood to handle asynchronous events. Libuv is an abstraction layer for network and file system functionality on both Windows and POSIX-based systems such as Linux, macOS, OSS on NonStop, and Unix. Node.js relies on nghttp2 for HTTP support. As of version 20, Node.js uses the ada library which provides up-to-date WHATWG URL compliance. As of version 19.5, Node.js uses the simdutf library for fast Unicode validation and transcoding. As of version 21.3, Node.js uses the simdjson library for fast JSON parsing.

Threading

Node.js operates on a single-thread event loop, using non-blocking I/O calls, allowing it to support tens of thousands of concurrent connections without incurring the cost of thread context switching. The design of sharing a single thread among all the requests that use the observer pattern is intended for building highly concurrent applications, where any function performing I/O must use a callback. To accommodate the single-threaded event loop, Node.js uses the libuv library—which, in turn, uses a fixed-sized thread pool that handles some of the non-blocking asynchronous I/O operations.

A thread pool handles the execution of parallel tasks in Node.js. The main thread function call posts tasks to the shared task queue, which threads in the thread pool pull and execute. Inherently non-blocking system functions such as networking translate to kernel-side non-blocking sockets, while inherently blocking system functions such as file I/O run in a blocking way on their own threads. When a thread in the thread pool completes a task, it informs the main thread of this, which in turn, wakes up and executes the registered callback.

A downside of this single-threaded approach is that Node.js does not allow vertical scaling by increasing the number of CPU cores of the machine it is running on without using an additional module, such as cluster, StrongLoop Process Manager, or pm2. However, developers can increase the default number of threads in the libuv thread pool. The server operating system (OS) is likely to distribute these threads across multiple cores. Another problem is that long-lasting computations and other CPU-bound tasks freeze the entire event-loop until completion.

V8

Main article: V8 (JavaScript engine)

V8 is the JavaScript execution engine which was initially built for Google Chrome. It was then open-sourced by Google in 2008. Written in C++, V8 compiles JavaScript source code to native machine code at runtime. As of 2016, it also includes Ignition, a bytecode interpreter.

Package management

npm is the pre-installed package manager for the Node.js server platform. It installs Node.js programs from the npm registry, organizing the installation and management of third-party Node.js programs.

Event loop

Node.js registers with the operating system so the OS notifies it of asynchronous I/O events such as new connections. Within the Node.js runtime, events trigger callbacks and each connection is handled as a small heap allocation. Traditionally, relatively heavyweight OS processes or threads handled each connection. Node.js uses an event loop for concurrent I/O, instead of processes or threads. In contrast to other event-driven servers, Node.js's event loop does not need to be called explicitly. Instead, callbacks are defined, and the server automatically enters the event loop at the end of the callback definition. Node.js exits the event loop when there are no further callbacks to be performed.

WebAssembly

Node.js supports WebAssembly and as of Node 14 has experimental support of WASI, the WebAssembly System Interface.

Native bindings

Node.js provides a way to create "add-ons" via a C-based API called N-API, which can be used to produce loadable (importable) .node modules from source code written in C/C++. The modules can be directly loaded into memory and executed from within JS environment as simple CommonJS modules. The implementation of the N-API relies on internal C/C++ Node.js and V8 objects requiring users to import (#include) Node.js specific headers into their native source code.

As the Node.js API is subject to breaking changes at a binary level, modules have to be built and shipped against specific Node.js versions to work properly. To address the issue, third parties have introduced open-sourced С/С++ wrappers on top of the API that partially alleviate the problem. They simplify interfaces, but as a side effect they may also introduce complexity which maintainers have to deal with. Even though the core functionality of Node.js resides in a JavaScript built-in library, modules written in C++ can be used to enhance capabilities and to improve performance of applications.

In order to produce such modules one needs to have an appropriate C++ compiler and necessary headers (the latter are typically shipped with Node.js itself), e.g., gcc, clang or MSVC++.

The N-API is similar to Java Native Interface.

Project governance

Main article: OpenJS Foundation

In 2015, various branches of the greater Node.js community began working under the vendor-neutral Node.js Foundation. The stated purpose of the organization "is to enable widespread adoption and help accelerate development of Node.js and other related modules through an open governance model that encourages participation, technical contribution, and a framework for long-term stewardship by an ecosystem invested in Node.js' success."

The Node.js Foundation Technical Steering Committee (TSC) is the technical governing body of the Node.js Foundation. The TSC is responsible for the core Node.js repo as well as dependent and adjacent projects. Generally the TSC delegates the administration of these projects to working groups or committees. The LTS group that manages long term supported releases is one such group. Other current groups include Website, Streams, Build, Diagnostics, i18n, Evangelism, Docker, Addon API, Benchmarking, Post-mortem, Intl, Documentation, and Testing.

In August 2017, a third of the TSC members resigned due to a dispute related to the project's code of conduct.

::data[format=table title="Current TSC Members{{Cite web|url=https://github.com/nodejs/node?tab=readme-ov-file#tsc-voting-members|title=tsc-voting-members|website=Github.com|date=16 May 2024 }}"]

UsernameFull Name
aduh95Antoine du Hamel
anonrigYagiz Nizipli
benjamingrBenjamin Gruenbaum
BridgeARRuben Bridgewater
gireeshpunathilGireesh Punathil
jasnellJames M Snell
joyeecheungJoyee Cheung
legendecasChengzhong Wu
marco-ippolitoMarco Ippolito
mcollinaMatteo Collina
mhdawsonMichael Dawson
RafaelGSSRafael Gonzaga
richardlauRichard Lau
ronagRobert Nagy
ruyadornoRuy Adorno
ShogunPandaPaolo Insogna
targosMichaël Zasso
tniessenTobias Nießen
::

References

References

  1. "node-v0.x-archive on GitHub".
  2. (13 April 2022). "nodejs/node".
  3. (17 September 2018). "node/LICENSE at master". Node.js Foundation.
  4. (17 September 2018). "The MIT License".
  5. "Stack Overflow Developer Survey 2025".
  6. gcuomo. (24 October 2013). "JavaScript Everywhere and the Three Amigos (Into the wild BLUE yonder!)".
  7. Laurent Orsini. (2013-11-07). "What You Need To Know About Node.js".
  8. "Node.js Foundation - Node.js".
  9. (2015-07-04). "Linux Foundation Collaborative Projects".
  10. (2016-09-11). "About Node.js, and why you should add Node.js to your skill set?".
  11. Staff, CNET News. (1996-10-15). "Netscape opens intranet attack". CNET.
  12. Ryan Dahl. (2010-11-09). "Joyent and Node". Google Groups.
  13. [https://books.google.com/books?id=KGt-FxUEj48C&dq=nodejs&pg=PT24 Sams Teach Yourself Node.js in 24 Hours], Sams Publishing, 05-Sep-2012
  14. Ubl, Malte. (2009-09-09). "JSConf.eu 2009, Berlin, Germany".
  15. (8 June 2012). "Ryan Dahl: Original Node.js presentation".
  16. [https://books.google.com/books?id=ZH6bpbcrlvYC&q=nodejs Professional Node.js: Building JavaScript Based Scalable Software], John Wiley & Sons, 01-Oct-2012
  17. "Earliest releases of npm".
  18. Ryandahl. (2011-06-23). "Porting Node to Windows With Microsoft's Help".
  19. Dahl, Ryan. "New gatekeeper".
  20. Schlueter, Isaac. (15 January 2014). "The Next Phase of Node.js".
  21. [https://www.infoworld.com/article/2855057/application-development/why-iojs-decided-to-fork-nodejs.html Q&A: Why io.js decided to fork Node.js], [[InfoWorld]] Tech Watch
  22. "Node.js Foundation Advances Community Collaboration, Announces New Members and Ratified Technical Governance".
  23. (2015-09-14). "Node.js Foundation Combines Node.js and io.js Into Single Codebase in New Release".
  24. (19 May 2015). "io.js and Node.js merge".
  25. [https://iojs.org/en/ Io.js, JavaScript I/O], ''"io.js has merged with the Node.js project again. There won't be any further io.js releases. All of the features in io.js are available in Node.js v4 and above."''
  26. "Brand Guide". OpenJS Foundation.
  27. "Node.JS on X: "Meet Rocket Turtle there are many ways 👋"".
  28. [https://books.google.com/books?id=G1y_5kpmatUC&q=nodejs Smashing Node.js: JavaScript Everywhere], John Wiley & Sons, 14-Aug-2012
  29. [https://nodejs.org/api/ Modules], Nodejs Website
  30. [https://books.google.com/books?id=dPaoCwAAQBAJ&q=nodejs Node.js Essentials], Packt Publishing, 10-Nov-2015
  31. (2024-07-09). "Node v22.6.0 (Current) Release Notes".
  32. "List of languages that compile to JS".
  33. (15 April 2013). "CoffeeScript on Node.js". O'Reilly Media, Inc..
  34. [https://books.google.com/books?id=KZQQAlhTOBgC&q=nodejs Node.js for PHP Developers], O'Reilly Media, Inc., 2013
  35. Foundation, Node js. "Installing Node.js via package manager".
  36. "bomBora - Node.js for NonStop". Infrasoft.
  37. [https://books.google.com/books?id=5eGRAwAAQBAJ&q=nodejs Express.js Guide: The Comprehensive Book on Express.js], Azat Mardan, 28-May-2014
  38. [http://www.techrepublic.com/article/edge-js-bridges-the-gap-between-node-js-and-net/ Edge.js bridges the gap between Node.js and .NET], TechRepublic, Tony Patton, 1 July 2014
  39. [https://www.jetbrains.com/webstorm/help/node-js.html Node.js], WebStorm supports integration with the Node.js runtime environment, WebStorm Help
  40. [https://www.jetbrains.com/webstorm/help/running-and-debugging-node-js.html Running and Debugging Node.js], WebStorm Help
  41. "Node.js Tools for Visual Studio".
  42. [https://github.com/soywiz/typescript-node-definitions soywiz/typescript-node-definitions TypeScript's typings for some popular node.js modules], GitHub
  43. [https://github.com/DefinitelyTyped/DefinitelyTyped DefinitelyTyped], GitHub
  44. "The repository for high quality TypeScript type definitions".
  45. [https://www.typescriptlang.org/Samples#ImageBoard ImageBoard, A Node.js + Express + MongoDB application built using TypeScript on the server] {{Webarchive. link. (18 May 2019 , TypeScript Samples)
  46. Krill, Paul. (2015-11-10). "Node.js takes center stage in NetBeans 8.1". [[InfoWorld]].
  47. {{usurped
  48. "nodejs/Release".
  49. (23 August 2023). "Releases".
  50. [https://nodejs.org/en/blog/announcements/nodejs16-eol/ Bringing forward the End-of-Life Date for Node.js 16], Node.js Website
  51. "Node.JS CODENAMES.md".
  52. "Node.js — Node.js v25.0.0 (Current)".
  53. (19 August 2012). "Node.js w/1M concurrent connections!". caustik's blog.
  54. "Node.js's cluster module".
  55. "StrongLoop Process Manager".
  56. (12 June 2021). "GitHub - Unitech/pm2: Production process manager for Node.js applications with a built-in load balancer". GitHub.
  57. Aleksander Kasiuk. (22 April 2015). "On problems with threads in node.js - Future Processing".
  58. [https://nodejs.org/about/ About Node.js], Node.js Website
  59. "C++ addons {{!}} Node.js v14.12.0 Documentation".
  60. Foundation, Node.js. "Node.js Foundation {{!}} Node.js".
  61. "nodejs/TSC".
  62. Foundation, Node.js. "Working Groups {{!}} Node.js".
  63. Whittaker, Zack, ''[https://www.zdnet.com/article/after-governance-breakdown-node-js-leaders-fight-for-its-survival/?loc=newsletter_large_thumb_related&ftag=TREc64629f&bhid=24465828771686428160302951310435/ After governance breakdown, Node.js leaders fight for its survival]'', ZDNet, 25 August 2017
  64. (16 May 2024). "tsc-voting-members".

::callout[type=info title="Wikipedia Source"] This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page. ::

2009-softwarefree-software-programmed-in-c++free-software-programmed-in-javascriptjavascript-librariesjoyentlinux-foundation-projectssoftware-using-the-mit-licenseruntime-systems