Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Node.js

From Wikipedia, the free encyclopedia
JavaScript runtime environment

Node.js
Original authorRyan Dahl
DeveloperOpenJS Foundation
Initial releaseMay 27, 2009; 16 years ago (2009-05-27)[1]
Stable release
25.6.1[2] Edit this on Wikidata / February 10, 2026; 8 days ago (February 10, 2026)
Written inJavaScript,C++,Python,C
Operating systemz/OS,Linux,macOS,Microsoft Windows,SmartOS,FreeBSD,OpenBSD,IBM AIX[3]
TypeRuntime environment
LicenseMIT License[4][5]
Websitenodejs.org Edit this on Wikidata
Repository
Program execution
General concepts
Types of code
Compilation strategies
Notable runtimes
Notable compilers & toolchains

Node.js is across-platform,open-sourceJavaScriptruntime environment that can run onWindows,Linux,Unix,macOS, and more. Node.js runs on theV8JavaScript engine, and executes JavaScript code outside aweb browser. According to the Stack Overflow Developer Survey, Node.js is one of the most commonly used web technologies.[6]

Node.js lets developers use JavaScript to writecommand line tools andserver-side scripting. The ability to run JavaScript code on the server is often used to generatedynamic web page content before the page is sent to the user's web browser. Consequently, Node.js represents a "JavaScript everywhere"paradigm,[7] unifyingweb-application development around a singleprogramming language, as opposed to using different languages for the server- versus client-side programming.

Node.js has anevent-driven architecture capable ofasynchronous I/O. These design choices aim to optimizethroughput andscalability in web applications with many input/output operations, as well as forreal-time Web applications (e.g.,real-time communication programs andbrowser games).[8]

The Node.jsdistributed development project was previously governed by the Node.js Foundation,[9] and has now merged with theJS Foundation to form theOpenJS Foundation. OpenJS Foundation is facilitated by theLinux Foundation's Collaborative Projects program.[10]

History

[edit]
Ryan Dahl, creator of Node.js, in 2010
Rocket Turtle, the official mascot of Node.js since February 2024

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

Dahl criticized the limited capability ofApache 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.[citation needed]

Dahl demonstrated the project at the inaugural European JSConf on November 8, 2009.[14][15][16] Node.js combinedGoogle'sV8 JavaScript engine, anevent loop, and a low-levelI/OAPI.[17]

In January 2010, apackage manager was introduced for the Node.js environment callednpm.[18] The package manager allows programmers to publish and share Node.jspackages, along with the accompanying source code, and is designed to simplify the installation, update and uninstallation of packages.[17]

In June 2011, Microsoft and Joyent implemented a nativeWindows version of Node.js.[19] 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.[20] In January 2014, Schlueter announced that Timothy J. Fontaine would lead the project.[21]

In December 2014, Fedor Indutny created io.js, afork of Node.js created because of dissatisfaction with Joyent's governance as anopen-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.[22]

The Node.js Foundation, formed to reconcile Node.js and io.js under a unified banner, was announced in February 2015.[23] The merger was realized in September 2015 with Node.js v0.12 and io.js v3.3 combining into Node v4.0.[24] This merge brought V8ES6 features into Node.js and started a long-term support release cycle.[25] 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.[26]

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

Branding

[edit]

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

Overview

[edit]

Node.js allows the creation ofweb servers and networking tools usingJavaScript and a collection of "modules" that handle various core functionalities.[14][17][29][30][31][excessive citations] Modules are provided forfile system I/O, networking (DNS,HTTP,TCP,TLS/SSL orUDP),binary data (buffers),cryptography functions,data streams and other core functions.[17][30][32] Node.js's modules use an API designed to reduce the complexity of writing server applications.[17][30]

Since version 22.6.0, Node.js natively supports bothJavaScript andTypeScript, allowing TypeScript files to be executed without a separate compilation step.[33] The TypeScript support was contributed by Node.js TSC member Marco Ippolito. In addition, manycompile-to-JS languages are available,[34] allowing Node.js applications to also be written inCoffeeScript,[35]Dart,ClojureScript, and others.

Node.js is primarily used to build network programs such as web servers.[29] The most significant difference between Node.js andPHP is that most functions in PHPblock until completion (commands execute only after previous commands finish), while Node.js functions arenon-blocking (commands executeconcurrently and usecallbacks to signal completion or failure).[29]

Node.js is officially supported byLinux,macOS andMicrosoft Windows 8.1 and Server 2012 (and later),[3] with Tier 2 support forSmartOS andIBM AIX and experimental support forFreeBSD.OpenBSD also works, and LTS versions are available forIBM i (AS/400).[36] The source code may also be built on similar operating systems that are not officially supported, such asNonStop OS[37] andUnix servers.

Platform architecture

[edit]

Node.js enables development of fast web servers in JavaScript usingevent-driven programming.[17] Developers can create scalable servers without usingthreading by using a simplified model that usescallbacks to signal the completion of a task.[17][page needed] Node.js connects the ease of a scripting language (JavaScript) with the power of Unix network programming.[17]

Node.js was built on top of Google's V8 JavaScript engine since it was open-sourced under theBSD license, and it contains comprehensive support for fundamental protocols such asHTTP,DNS andTCP.[14] JavaScript's existing popularity made Node.js accessible to theweb-development community.[14]

Industry support

[edit]

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 developedweb frameworks to accelerate the development of applications. Such frameworks includeExpress.js,Socket.IO,Sails.js,Next.js andMeteor.[17][38] Various packages have also been created for interfacing with other languages or runtime environments such asMicrosoft .NET.[39]

Modern desktopIDEs provide editing and debugging features specifically for Node.js applications. Such IDEs includeAtom,Brackets,JetBrainsWebStorm,[40][41]Microsoft Visual Studio (with Node.js Tools for Visual Studio,[42] orTypeScript with Node definitions[43][44][45][46]),NetBeans,[47] Nodeclipse Enide Studio[48] (Eclipse-based) andVisual Studio Code.[49][50] Someonline IDEs also support Node.js, such asCodeanywhere,Eclipse Che,Cloud9 IDE and the visual flow editor inNode-RED.

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

Releases

[edit]

New major releases of Node.js are cut from theGitHub 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 toLong 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.[51] The LTS Working Group manages strategy and policy in collaboration with the Technical Steering Committee of the Node.js Foundation.

Release[52]StatusCode nameRelease dateMaintenance end
Unsupported: 0.10.xUnsupported: End-of-Life2013-03-112016-10-31
Unsupported: 0.12.xUnsupported: End-of-Life2015-02-062016-12-31
Unsupported: 4.xUnsupported: End-of-LifeArgon[51]2015-09-082018-04-30
Unsupported: 5.xUnsupported: End-of-Life2015-10-292016-06-30
Unsupported: 6.xUnsupported: End-of-LifeBoron[51]2016-04-262019-04-30
Unsupported: 7.xUnsupported: End-of-Life2016-10-252017-06-30
Unsupported: 8.xUnsupported: End-of-LifeCarbon[51]2017-05-302019-12-31
Unsupported: 9.xUnsupported: End-of-Life2017-10-012018-06-30
Unsupported: 10.xUnsupported: End-of-LifeDubnium[51]2018-04-242021-04-30
Unsupported: 11.xUnsupported: End-of-Life2018-10-232019-06-01
Unsupported: 12.xUnsupported: End-of-LifeErbium[51]2019-04-232022-04-30
Unsupported: 13.xUnsupported: End-of-Life2019-10-222020-06-01
Unsupported: 14.xUnsupported: End-of-LifeFermium[51]2020-04-212023-04-30
Unsupported: 15.xUnsupported: End-of-Life2020-10-202021-06-01
Unsupported: 16.xUnsupported: End-of-LifeGallium[51]2021-04-202023-09-11[53]
Unsupported: 17.xUnsupported: End-of-Life2021-10-192022-06-01
Unsupported: 18.xUnsupported: End-of-LifeHydrogen[51]2022-04-192025-04-30
Unsupported: 19.xUnsupported: End-of-Life2022-10-182023-06-01
Supported: 20.xSupported: Maintenance LTSIron[54]2023-04-182026-04-30
Unsupported: 21.xUnsupported: End-of-Life[51]2023-10-172024-06-01
Supported: 22.xSupported: Maintenance LTSJod[54][51]2024-04-242027-04-30
Unsupported: 23.xUnsupported: End-of-Life[51]2024-10-152025-06-01
Latest version:24.xLatest version:Active LTSKrypton[54]2025-04-222028-04-30
Preview version: 25.xPreview version: Current2025-10-15[55]2026-06-01
Future version: 26.xFuture version: PlannedLithium[54]20262029
Future version: 28.xFuture version: PlannedMagnesium[54]20272030
Future version: 30.xFuture version: PlannedNeon[54]20282031
Future version: 32.xFuture version: PlannedOxygen[54]20292032
Future version: 34.xFuture version: PlannedPlatinum[54]20302033
Legend:
Unsupported
Supported
Latest version
Preview version
Future version

Technical details

[edit]

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

Internals

[edit]

Node.js useslibuv under the hood to handle asynchronous events. Libuv is an abstraction layer for network and file system functionality on both Windows andPOSIX-based systems such as Linux,macOS, OSS onNonStop, and Unix. Node.js relies on nghttp2 for HTTP support. As of version 20, Node.js uses the ada library which provides up-to-dateWHATWGURL 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

[edit]

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

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 allowvertical scaling by increasing the number ofCPU cores of the machine it is running on without using an additional module, such as cluster,[57] StrongLoop Process Manager,[58] or pm2.[59] However, developers can increase the default number of threads in the libuv thread pool. The serveroperating system (OS) is likely to distribute these threads across multiple cores.[60] Another problem is that long-lasting computations and other CPU-bound tasks freeze the entire event-loop until completion.[citation needed]

V8

[edit]
Main article:V8 (JavaScript engine)

V8 is the JavaScript execution engine which was initially built forGoogle Chrome. It was then open-sourced by Google in 2008. Written inC++, V8 compiles JavaScript source code to native machine codeat runtime.[8] As of 2016, it also includes Ignition, abytecode interpreter.

Package management

[edit]

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

[edit]

Node.js registers with the operating system so the OS notifies it ofasynchronous I/O events such as new connections. Within the Node.js runtime, events trigger callbacks and each connection is handled as a smallheap 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.[61] In contrast to other event-driven servers,[which?] 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

[edit]

Node.js supportsWebAssembly and as of Node 14 has experimental support ofWASI, the WebAssembly System Interface.

Native bindings

[edit]
See also:Foreign function interface

Node.js provides a way to create "add-ons" via aC-based API called N-API, which can be used to produce loadable (importable).node modules from source code written in C/C++.[62] 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 usersto import (#include) Node.js specificheaders into their native source code.[62]

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 orMSVC++.

The N-API is similar toJava Native Interface.

Project governance

[edit]
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."[63]

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.[64] 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.[65]

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

Current TSC Members[67]
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

[edit]
  1. ^"node-v0.x-archive on GitHub".GitHub. Retrieved2 August 2014.
  2. ^nodejs."Release 2026-02-10, Version 25.6.1 (Current), @aduh95". Retrieved15 February 2026.
  3. ^ab"nodejs/node".GitHub. 13 April 2022.
  4. ^"node/LICENSE at master".GitHub. Node.js Foundation. 17 September 2018. Retrieved17 September 2018.
  5. ^"The MIT License".Open Source Initiative. 17 September 2018. Retrieved17 September 2018.
  6. ^"Stack Overflow Developer Survey 2025".Stack Overflow. Retrieved10 October 2025.
  7. ^gcuomo (24 October 2013)."JavaScript Everywhere and the Three Amigos (Into the wild BLUE yonder!)".www.ibm.com. Archived fromthe original on 14 November 2013. Retrieved24 October 2013.
  8. ^abcLaurent Orsini (7 November 2013)."What You Need To Know About Node.js".readwrite.com. Archived from the original on 11 November 2013. Retrieved6 February 2022.
  9. ^"Node.js Foundation - Node.js".nodejs.org. Retrieved4 July 2015.
  10. ^"Linux Foundation Collaborative Projects".linuxfoundation.org. 4 July 2015. Retrieved4 July 2015.
  11. ^"About Node.js, and why you should add Node.js to your skill set?".Training.com. 11 September 2016. Archived fromthe original on 1 April 2017. Retrieved23 October 2016.
  12. ^Staff, CNET News (15 October 1996)."Netscape opens intranet attack".CNET. Retrieved20 April 2017.
  13. ^Ryan Dahl (9 November 2010)."Joyent and Node". Google Groups. Retrieved5 February 2015.
  14. ^abcdSams Teach Yourself Node.js in 24 Hours, Sams Publishing, 05-Sep-2012
  15. ^Ubl, Malte (9 September 2009)."JSConf.eu 2009, Berlin, Germany".www.jsconf.eu. Retrieved9 September 2009.
  16. ^"Ryan Dahl: Original Node.js presentation". 8 June 2012.Archived from the original on 15 December 2021 – via www.youtube.com.
  17. ^abcdefghiProfessional Node.js: Building JavaScript Based Scalable Software, John Wiley & Sons, 01-Oct-2012
  18. ^"Earliest releases of npm".GitHub. Retrieved27 July 2016.
  19. ^Ryandahl (23 June 2011)."Porting Node to Windows With Microsoft's Help".nodejs.org. Retrieved17 April 2016.
  20. ^Dahl, Ryan."New gatekeeper". Retrieved26 October 2013.
  21. ^Schlueter, Isaac (15 January 2014)."The Next Phase of Node.js". Retrieved21 January 2014.
  22. ^Q&A: Why io.js decided to fork Node.js,InfoWorld Tech Watch
  23. ^"Node.js Foundation Advances Community Collaboration, Announces New Members and Ratified Technical Governance". Archived fromthe original on 24 June 2015. Retrieved4 July 2015.
  24. ^"Node.js Foundation Combines Node.js and io.js Into Single Codebase in New Release".nodejs.org. 14 September 2015. Retrieved28 January 2016.
  25. ^"io.js and Node.js merge".medium.com. 19 May 2015. Retrieved27 June 2015.
  26. ^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."
  27. ^"Brand Guide"(PDF).Node.js. OpenJS Foundation. Retrieved22 March 2024.
  28. ^"Node.JS on X: "Meet Rocket Turtle there are many ways 👋"". Retrieved22 March 2024.
  29. ^abcNode.js for PHP Developers, O'Reilly Media, Inc., 2013
  30. ^abcNode.js Essentials, Packt Publishing, 10-Nov-2015
  31. ^Smashing Node.js: JavaScript Everywhere, John Wiley & Sons, 14-Aug-2012
  32. ^Modules, Nodejs Website
  33. ^"Node v22.6.0 (Current) Release Notes".nodejs.org. 9 July 2024. Retrieved13 October 2025.
  34. ^"List of languages that compile to JS".GitHub.
  35. ^CoffeeScript on Node.js. O'Reilly Media, Inc. 15 April 2013.ISBN 9781449316846. Retrieved17 May 2015.
  36. ^Foundation, Node js."Installing Node.js via package manager".Node.js. Retrieved19 May 2019.
  37. ^"bomBora - Node.js for NonStop".infrasoft.com.au. Infrasoft. Archived fromthe original on 11 March 2018. Retrieved14 August 2015.
  38. ^Express.js Guide: The Comprehensive Book on Express.js, Azat Mardan, 28-May-2014
  39. ^Edge.js bridges the gap between Node.js and .NET, TechRepublic, Tony Patton, 1 July 2014
  40. ^Node.js, WebStorm supports integration with the Node.js runtime environment, WebStorm Help
  41. ^Running and Debugging Node.js, WebStorm Help
  42. ^"Node.js Tools for Visual Studio".microsoft.com. Retrieved1 February 2016.
  43. ^soywiz/typescript-node-definitions TypeScript's typings for some popular node.js modules, GitHub
  44. ^DefinitelyTyped, GitHub
  45. ^"The repository for high quality TypeScript type definitions".definitelytyped.org. Archived fromthe original on 3 February 2016.
  46. ^ImageBoard, A Node.js + Express + MongoDB application built using TypeScript on the serverArchived 18 May 2019 at theWayback Machine, TypeScript Samples
  47. ^Krill, Paul (10 November 2015)."Node.js takes center stage in NetBeans 8.1".infoworld.com.InfoWorld. Retrieved10 November 2015.
  48. ^Nodeclipse, Enide -- Node.JS development in Eclipse, Nodeclipse Website
  49. ^Hello Visual Studio Code (with NodeJS), Channel 9, Microsoft
  50. ^Node.js Applications with VS Code, Visual Studio Code
  51. ^abcdefghijkl"nodejs/Release".GitHub. Retrieved3 May 2018.
  52. ^"Releases".Node.js. 23 August 2023.
  53. ^Bringing forward the End-of-Life Date for Node.js 16, Node.js Website
  54. ^abcdefgh"Node.JS CODENAMES.md".GitHub. Retrieved6 September 2023.
  55. ^"Node.js — Node.js v25.0.0 (Current)".nodejs.org. Retrieved21 October 2025.
  56. ^"Node.js w/1M concurrent connections!".caustik's blog. 19 August 2012.
  57. ^"Node.js's cluster module".nodejs.org. Retrieved19 October 2017.
  58. ^"StrongLoop Process Manager".strong-pm.io.
  59. ^"GitHub - Unitech/pm2: Production process manager for Node.js applications with a built-in load balancer".GitHub. 12 June 2021.
  60. ^Aleksander Kasiuk (22 April 2015)."On problems with threads in node.js - Future Processing".
  61. ^About Node.js, Node.js Website
  62. ^ab"C++ addons | Node.js v14.12.0 Documentation".nodejs.org. Retrieved26 September 2020.
  63. ^Foundation, Node.js."Node.js Foundation | Node.js".nodejs.org. Retrieved8 March 2017.
  64. ^"nodejs/TSC".GitHub. Retrieved8 March 2017.
  65. ^Foundation, Node.js."Working Groups | Node.js".nodejs.org. Archived fromthe original on 27 February 2017. Retrieved8 March 2017.
  66. ^Whittaker, Zack,After governance breakdown, Node.js leaders fight for its survival, ZDNet, 25 August 2017
  67. ^"tsc-voting-members".Github.com. 16 May 2024.

Further reading

[edit]

External links

[edit]
Wikimedia Commons has media related toNode.js.
Platform
Packaging
Frameworks
Libraries
Languages
Code analysis
Subsets,* supersets
Transpilers
Concepts
Debuggers
Documentation generators
Editors (comparison)
Engines
Frameworks
Relatedtechnologies
Package managers
Module bundlers
Server-side
Unit testing frameworks (list)
People
International
National
Retrieved from "https://en.wikipedia.org/w/index.php?title=Node.js&oldid=1338116999"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp