Node.js

Node.js
Original author(s) Ryan Dahl
Developer(s) Node.js Developers, Joyent, contributors
Initial release May 27, 2009 (2009-05-27)[1]
Stable release
8.3.0 & 6.11.2 (LTS) / August 9, 2017 (2017-08-09)[2] & August 1, 2017 (2017-08-01)[3]
Repository github.com/nodejs/node
Development status Active (complete release list)
Written in C, C++, JavaScript
Operating system Linux, macOS, Solaris, FreeBSD, OpenBSD, Microsoft Windows (older versions require Cygwin), webOS, NonStop OS
Type Event-driven networking
License MIT[4]
Website nodejs.org

Node.js is an open-source, cross-platform JavaScript run-time environment for executing JavaScript code server-side. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML, to be run client-side by a JavaScript engine in the user's web browser. Node.js enables JavaScript to be used for server-side scripting, and runs scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Consequently, Node.js has become one of the foundational elements of the "JavaScript everywhere" paradigm,[5] allowing web application development to unify around a single programming language, rather than rely on a different language for writing server side scripts.

Though .js is the conventional filename extension for JavaScript code, the name "Node.js" does not refer to a particular file in this context and is merely the name of the product. 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).[6]

The Node.js distributed development project, governed by the Node.js Foundation,[7] is facilitated by the Linux Foundation's Collaborative Projects program.[8]

Corporate users of Node.js software include GoDaddy,[9] Groupon,[10] IBM,[11] LinkedIn,[12][13] Microsoft,[14][15] Netflix,[16] PayPal,[17][18] Rakuten, SAP, Tuenti,[19] Voxer,[20] Walmart,[21] Yahoo!,[22] and Cisco Systems.

History

Ryan Dahl, creator of Node.js, in 2010

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

Dahl was inspired to create Node.js after seeing a file upload progress bar on Flickr. The browser did not know how much of the file had been uploaded and had to query the Web server. Dahl desired an easier way.[6][26]

Dahl criticized the limited possibilities of the most popular web server in 2009, Apache HTTP Server, to handle a lot of concurrent connections (up to 10,000 and more) and the most common way of creating code (sequential programming), when code either blocked the entire process or implied multiple execution stacks in the case of simultaneous connections.[27]

Dahl demonstrated the project at the inaugural European JSConf on November 8, 2009.[28][29][30] Node.js combined Google's V8 JavaScript engine, an event loop and a low-level I/O API.[31] The project received a standing ovation.[32]

In January 2010, a package manager was introduced for the Node.js environment called npm.[33] The package manager makes it easier for programmers to publish and share source code of Node.js libraries and is designed to simplify installation, updating and uninstallation of libraries.[31]

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

In January 2012, Dahl stepped aside, promoting coworker and npm creator Isaac Schlueter to manage the project.[35] In January 2014, Schlueter announced that Timothy J. Fontaine would lead the project.[36]

In December 2014, Fedor Indutny started io.js, a fork of Node.js. Due to the internal conflict over Joyent's governance, io.js was created as an open governance alternative with a separate technical committee.[37][38] Unlike Node.js,[39] the authors planned to keep io.js up-to-date with the latest releases of the Google V8 JavaScript engine.[40]

In February 2015, the intent to form a neutral Node.js Foundation was announced. By June 2015, the Node.js and io.js communities voted to work together under the Node.js Foundation.[41]

In September 2015, Node.js v0.12 and io.js v3.3 were merged back together into Node v4.0.[42] This brought V8 ES6 features into Node.js, and a long-term support release cycle.[43] As of 2016, the io.js website recommends that developers switch back to Node.js and that no further releases of io.js are planned due to the merger.[44]

Overview

Node.js allows the creation of Web servers and networking tools using JavaScript and a collection of "modules" that handle various core functionality.[28][31][45][46][47] 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.[31][46][48] Node.js's modules use an API designed to reduce the complexity of writing server applications.[31][46]

Node.js applications can run on Linux, macOS, Microsoft Windows, NonStop,[49] and Unix servers. They can alternatively be written with CoffeeScript[50] (a JavaScript alternative), Dart or Microsoft TypeScript (strongly typed forms of JavaScript), or any other language that can compile to JavaScript.[50]

Node.js is primarily used to build network programs such as Web servers.[45] The biggest difference between Node.js and PHP is that most functions in PHP block until completion (commands execute only after previous commands have completed), while functions in Node.js are designed to be non-blocking (commands execute in parallel, and use callbacks to signal completion or failure).[45]

Platform architecture

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

Node.js was built on the Google V8 JavaScript engine since it was open-sourced under the BSD license, extremely fast, and proficient with internet fundamentals like HTTP, DNS, TCP.[28] Also, JavaScript was a well-known language, making Node.js immediately accessible to the entire web development community.[28]

Industry support

People have built thousands of open-source libraries for Node.js - most of them hosted on the npm website. The Node.js developer community has two main mailing lists and the IRC channel #node.js on freenode. There are multiple developer conferences and events 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 server frameworks to accelerate the development of applications. Such frameworks include Connect, Express.js, Socket.IO, Koa.js, Hapi.js, Sails.js, Meteor, Derby, and many others.[31][51]

Modern desktop IDEs provide editing and debugging features specifically for Node.js applications. Such IDEs include Atom, Brackets, JetBrains WebStorm,[52][53] Microsoft Visual Studio (with Node.js Tools for Visual Studio,[54] or TypeScript with Node definitions[55][56][57][58]), NetBeans,[59] Nodeclipse Enide Studio[60] (Eclipse-based) and Visual Studio Code.[61][62] Certain online web-based IDEs also support Node.js, such as Codeanywhere, Codenvy, Cloud9 IDE, Koding and the visual flow editor in Node-RED.

Releases

Release Code name LTS status Active LTS start Maintenance start Maintenance end
v0.10 End-of-life - 2015-10-01 2016-10-31
v0.12 End-of-life - 2016-04-01 2016-12-31
v4 Argon Active 2015-10-01 2017-04-01 2018-04-01
v5 No LTS N/A
v6 Boron Active 2016-10-18 2018-04-18 2019-04-18
v7 No LTS N/A
v8 Carbon[63] Planned 2017-10-01[64] 2019-04-01[65] TBD

New major releases of Node.js are cut from the GitHub master 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 transitions to Long Term Support (LTS), which gives that version 18 months of active support from the date it is designated LTS. After these 18 months expire, an LTS release will receive an additional 12 months of maintenance support. An active version will receive non-breaking backports of changes a few weeks after they land in the current release. A maintenance release will only receive critical fixes and documentation updates.[66]

The strategy and policy of LTS releases are managed by the LTS Working Group in collaboration with the Technical Steering Committee of the Node.js Foundation.

Technical details

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

Threading

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

A downside of this single-threaded approach is that Node.js doesn't 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,[68] StrongLoop Process Manager[69] or pm2.[70] However, developers can increase the default number of threads in the libuv thread pool; these threads are likely to be distributed across multiple cores by the server operating system.[71]

Execution of parallel tasks in Node.js is handled by a thread pool. The main thread call functions post tasks to the shared task queue that threads in the thread pool pull and execute. Inherently non-blocking system functions like networking translates to kernel-side non-blocking sockets, while inherently blocking system functions like file I/O run in a blocking way on its own thread. When a thread in the thread pool completes a task, it informs the main thread of this that in turn wakes up and execute the registered callback. Since callbacks are handled in serial on the main thread, long lasting computations and other CPU-bound tasks will freeze the entire event-loop until completion.

V8

V8 is the JavaScript execution engine built for Google Chrome and open-sourced by Google in 2008. Written in C++, V8 compiles JavaScript source code to native machine code instead of interpreting it in real time.[6]

Node.js uses libuv to handle asynchronous events. Libuv is an abstraction layer for network and file system functionality on both Windows and POSIX-based systems like Linux, macOS, OSS on NonStop and Unix.

The core functionality of Node.js resides in a JavaScript library. The Node.js bindings, written in C++, connect these technologies to each other and to the operating system.

Package management

npm is the pre-installed package manager for the Node.js server platform. It is used to install Node.js programs from the npm registry, organizing the installation and management of third-party Node.js programs. npm is not to be confused with the CommonJS require() statement. It is not used to load code; instead, it is used to install code and manage code dependencies from the command line. The packages found in the npm registry can range from simple helper libraries like Lodash to task runners like Grunt.

Unified API

Node.js can be combined with a browser, a database supporting JSON data (such as Postgres,[72] MongoDB or CouchDB) and JSON for a unified JavaScript development stack. With the adaptation of what were essentially server-side development patterns like MVC, MVP, MVVM, etc., Node.js allows the reuse of the same model and service interface between client-side and server-side.

Event loop

Node.js registers itself with the operating system in order to be notified when a connection is made, and the operating system will issue a callback. Within the Node.js runtime, each connection is a small heap allocation. Traditionally, relatively heavyweight OS processes or threads handled each connection. Node.js uses an event loop for scalability, instead of processes or threads.[73] 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.

Project governance

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

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 administration of these projects to working groups or committees.[75] The LTS group which 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.[76]

Alternatives

Similar open source event-driven server frameworks for other platforms include:

Node.js may utilize code written in other programming languages using:

See also

References

  1. "node-v0.x-archive on GitHub". Retrieved 2 August 2014.
  2. "Node.js Changelog". Retrieved 10 Aug 2017.
  3. "Node.js Changelog". Retrieved 2017-08-03.
  4. "node/LICENSE at master". GitHub. Node.js Foundation. 12 July 2017. Retrieved 12 July 2017.
  5. https://www.ibm.com/developerworks/community/blogs/gcuomo/entry/javascript_everywhere_and_the_three_amigos?lang=en
  6. 1 2 3 4 Laurent Orsini (2013-11-07). "What You Need To Know About Node.js". readwrite. Archived from the original on 2013-11-07. Retrieved 2016-01-22.
  7. "Node.js Foundation - Node.js". Retrieved 4 July 2015.
  8. "Linux Foundation Collaborative Projects". Retrieved 4 July 2015.
  9. Why GoDaddy's Nodejitsu deal is great for Node.js, VentureBeat, February 10, 2015
  10. Geitgey, Adam (30 October 2013). "I-Tier: Dismantling the Monoliths". Groupon. Retrieved 30 April 2014.
  11. "IBM Bluemix". Retrieved 4 July 2015.
  12. "You'll never believe how LinkedIn built its new iPad app". VentureBeat. May 2, 2012. Retrieved May 10, 2012.
  13. "Blazing fast node.js: 10 performance tips from LinkedIn Mobile". Retrieved 7 April 2015.
  14. Baxter-Reynolds, Matthew (November 9, 2011). "Here's why you should be happy that Microsoft is embracing Node.js". London: The Guardian. Retrieved May 10, 2012.
  15. "WebMatrix - Front End Web Developers take note (ASP.NET, PHP, node.js and more)". Retrieved 2 August 2014.
  16. Node.js in Flames November 19, 2014
  17. "Clash of the Titans: Releasing the Kraken, NodeJS @paypal". fluentconf.com. May 28, 2013. Retrieved September 11, 2013.
  18. "All such companies and their products in which Node.js is used". Retrieved 2 August 2014.
  19. "SAP AppBuilder". SAP. March 10, 2014. Retrieved March 10, 2014.
  20. The Node Ahead: JavaScript leaps from browser into future, The Register, March 1, 2011
  21. "Why Walmart is using Node.js". VentureBeat. January 24, 2012. Retrieved May 10, 2012.
  22. "Yahoo! Announces Cocktails Shaken, Not Stirred". Retrieved 7 April 2015.
  23. "About Node.js, and why you should add Node.js to your skill set?". Training.com. Training.com. Retrieved 23 October 2016.
  24. "Netscape opens intranet attack". CNET. Retrieved 2017-04-20.
  25. Ryan Dahl (2010-11-09). "Joyent and Node". Google Groups. Retrieved 2015-02-05.
  26. Harris, Amber (April 1, 2012). "The Birth of Node: Where Did it Come From? Creator Ryan Dahl Shares the History". Devops Angle. Retrieved 26 October 2013.
  27. "PHP 7 vs Node.js? They Can Be Partners, Not Competitors For a Developer!". Retrieved 21 December 2016.
  28. 1 2 3 4 Sams Teach Yourself Node.js in 24 Hours, Sams Publishing, 05-Sep-2012
  29. "Ryan Dahl at JSConf EU 2009".
  30. "Ryan Dahl at JSConf EU 2009 Video".
  31. 1 2 3 4 5 6 7 8 9 Professional Node.js: Building JavaScript Based Scalable Software, John Wiley & Sons, 01-Oct-2012
  32. "Video: Node.js by Ryan Dahl".
  33. "Earliest releases of npm". GitHub. Retrieved 27 July 2016.
  34. "Porting Node to Windows With Microsoft's Help". Retrieved 17 April 2016.
  35. Dahl, Ryan. "New gatekeeper". Retrieved 26 October 2013.
  36. Schlueter, Isaac (January 15, 2014). "The Next Phase of Node.js". Retrieved 21 January 2014.
  37. Krill, Paul (Dec 4, 2014). "Why io.js Decided to Fork Node.js". JavaWorld. Retrieved Dec 15, 2014.
  38. Q&A: Why io.js decided to fork Node.js, Infoworld Tech Watch
  39. Ben Noordhuis (Nov 12, 2014). "Issue 3692: function suddenly becomes undefined". V8 JavaScript Engine Issues. Retrieved 2 February 2015.
  40. Mikeal, Rogers (January 28, 2015). "State of io.js". Retrieved 2 February 2015.
  41. "Node.js Foundation Advances Community Collaboration, Announces New Members and Ratified Technical Governance". Retrieved 4 July 2015.
  42. "Node.js Foundation Combines Node.js and io.js Into Single Codebase in New Release". Retrieved 28 Jan 2016.
  43. "io.js and Node.js merge". Retrieved 27 June 2015.
  44. 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."
  45. 1 2 3 Node.js for PHP Developers, O'Reilly Media, Inc., 2013
  46. 1 2 3 Node.js Essentials, Packt Publishing, 09-Sep-2014
  47. Smashing Node.js: JavaScript Everywhere, John Wiley & Sons, 14-Aug-2012
  48. Modules, Nodejs Website
  49. "bomBora - Node.js for NonStop". Infrasoft. Retrieved 14 August 2015.
  50. 1 2 "CoffeeScript on Node.js". O'Reilly Media, Inc. April 15, 2013. Retrieved May 17, 2015.
  51. Express.js Guide: The Comprehensive Book on Express.js, Azat Mardan, 28-May-2014
  52. Node.js, WebStorm supports integration with the Node.js runtime environment, WebStorm Help
  53. Running and Debugging Node.js, WebStorm Help
  54. "Node.js Tools for Visual Studio". Retrieved 1 Feb 2016.
  55. soywiz/typescript-node-definitions TypeScript's typings for some popular node.js modules, GitHub
  56. DefinitelyTyped, GitHub
  57. The repository for high quality TypeScript type definitions Archived February 3, 2016, at the Wayback Machine.
  58. ImageBoard, A Node.js + Express + MongoDB application built using TypeScript on the server, TypeScript Samples
  59. Krill, Paul (2015-11-10). "Node.js takes center stage in NetBeans 8.1". InfoWorld.
  60. Nodeclipse, Enide -- Node.JS development in Eclipse, Nodeclipse Website
  61. Hello Visual Studio Code (with NodeJS), Channel 9, Microsoft
  62. Node.js Applications with VS Code, Visual Studio Code
  63. https://github.com/nodejs/LTS/issues/163
  64. https://github.com/nodejs/LTS#lts-schedule1
  65. https://github.com/nodejs/LTS#lts-schedule1
  66. "nodejs/LTS". GitHub. Retrieved 2017-03-03.
  67. "Node.js w/1M concurrent connections!". caustik's blog.
  68. "Cluster Node.js v5.5.0 Manual & Documentation".
  69. "StrongLoop Process Manager".
  70. "GitHub - Unitech/pm2: Production process manager for Node.js applications with a built-in load balancer". GitHub.
  71. Aleksander Kasiuk (22 April 2015). "On problems with threads in node.js - Future Processing".
  72. "PostgreSQL: Documentation: 9.4: JSON Types". www.postgresql.org. Retrieved 2016-10-20.
  73. About Node.js, Node.js Website
  74. Foundation, Node.js. "Node.js Foundation | Node.js". nodejs.org. Retrieved 2017-03-08.
  75. "nodejs/TSC". GitHub. Retrieved 2017-03-08.
  76. Foundation, Node.js. "Working Groups | Node.js". nodejs.org. Retrieved 2017-03-08.
  77. Tomasz Janczuk. "Edge.js".
  78. Using Edge.js to combine Node.js and .NET, .NET Curry
  79. Edge.js bridges the gap between Node.js and .NET, TechRepublic, Tony Patton, July 1, 2014
  80. "Luvit.io".
  81. "cobol".

Further reading

  • Hughes-Croucher, Tom; Wilson, Mike (April 2012), Up and Running with Node.js (First ed.), O'Reilly Media, p. 204, ISBN 978-1-4493-9858-3 
  • Ornbo, George (September 2012), Sams Teach Yourself Node.js in 24 Hours (First ed.), SAMS Publishing, p. 440, ISBN 978-0-672-33595-2 
  • Teixeira, Pedro (October 2012), Professional Node.js (First ed.), John Wiley & Sons, p. 408, ISBN 978-1-118-22754-1 
  • Randal L. Schwartz and Aaron Newcomb (9 January 2013). "Episode 237: Node.js". twit.tv/show/floss-weekly (Podcast). TWiT.tv. Event occurs at 1:08:13. Retrieved 9 January 2013. 
  • Kurniawan, Agus (July 2012), Nodejs Programming By Example (First ed.), PE Press, p. 67 
  • Gackenheimer, Cory (October 2013), Node.js Recipes: A Problem-Solution Approach (First ed.), Apress, p. 376, ISBN 978-1-4302-6058-5 
  • Ribeiro Pereira, Caio (February 2016), Building APIs with Node.js (First ed.), Leanpub, p. 152 
Wikimedia Commons has media related to Node.js.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.