Node.js
Original author(s) | Ryan Dahl |
---|---|
Developer(s) | Node.js Developers, Joyent, GitHub Contributors |
Initial release | May 27, 2009[1] |
Stable release | 5.5.0 / January 20, 2016[2] |
Development status | Active |
Written in | C, C++, JavaScript |
Operating system | OS X, Linux, Solaris, FreeBSD, OpenBSD, Microsoft Windows (older versions require Cygwin), webOS, NonStop OS |
Type | Event-driven networking |
License | MIT |
Website |
nodejs |
Node.js is an open-source, cross-platform runtime environment for developing server-side Web applications. Node.js is not a JavaScript framework,[3] but its applications are written in JavaScript and can be run within the Node.js runtime on a wide variety of platforms, including FreeBSD, IBM AIX, IBM i, IBM System z, Linux, Microsoft Windows, NonStop and OS X.[4] Its work is hosted and supported by the Node.js Foundation,[5] a collaborative project at the Linux Foundation.[6]
Node.js provides an event-driven architecture and a non-blocking I/O API designed to optimize an application's throughput and scalability for real-time Web applications. It uses Google V8 JavaScript engine to execute code, and a large percentage of the basic modules are written in JavaScript. Node.js contains a built-in library to allow applications to act as a stand-alone Web server.
Node.js is used by GoDaddy,[7] Groupon,[8] IBM,[9] LinkedIn,[10][11] Microsoft,[12][13] Netflix,[14] PayPal,[15][16] Rakuten, SAP,[17] Voxer,[18] Walmart,[19] and Yahoo!.[20]
Node.js is typically used where light-weight, real-time response is needed, like communication apps and Web-based gaming. It is used to build large, scalable network applications.[21]
History
Node.js was originally written in 2009 by Ryan Dahl. The initial release supported only Linux. Its development and maintenance was led by Dahl and later sponsored by Joyent.[22]
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.[21][23]
The project was demonstrated at the inaugural European JSConf on November 8, 2009.[24][25][26] Dahl presented Node.js, which combined Google's V8 JavaScript engine, an event loop and a low-level I/O API.[27] The project received a standing ovation.[28]
In 2011, a package manager was introduced for the Node.js environment called npm. The package manager makes it easier for the community to publish and share open-source Node.js libraries and is designed to simplify installation, updating and uninstallation of libraries.[27]
In June 2011, Microsoft and Joyent implemented a native Windows version of Node.js.[29] 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.[30] In January 2014, Schlueter announced that Timothy J. Fontaine would be the new project lead.[31]
In December 2014, Fedor Indutny started io.js, a fork of Node.js. Due to internal conflict over Joyent's governance, io.js was created as an open governance alternative with a separate technical committee.[32][33] Unlike Node.js,[34] the authors planned to keep io.js up-to-date with the latest releases of the Google V8 JavaScript engine.[35]
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.[36]
In September 2015, Node.js v0.12 and io.js v3.3 were merged back together into Node v4.0.[37] This brought V8 ES6 features into Node.js, and a long-term support release cycle.[38] As of 2016, the io.js website recommends that developers switch back to Node.js.[39]
Overview
Node.js allows the creation of Web servers and networking tools using JavaScript and a collection of "modules" that handle various core functionality.[27][24][40][41][42] Modules handle file system I/O, networking (DNS, HTTP, TCP, TLS/SSL, or UDP), binary data (buffers), cryptography functions, data streams[43] and other core functions.[27][41][44] Node.js's modules use an API designed to reduce the complexity of writing server applications.[27][41]
Node.js applications can run on Mac OS X, Microsoft Windows, NonStop,[4] and Unix servers. They can alternatively be written with CoffeeScript[45] (a JavaScript alternative), Dart or Microsoft TypeScript (strongly typed forms of JavaScript), or any other language that can compile to JavaScript.[45]
Node.js is primarily used to build network programs such as Web servers, making it similar to PHP.[40] 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).[40]
Platform architecture
Node.js brings event-driven programming to web servers, enabling development of fast web servers in JavaScript.[27] 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.[27] Node.js was created because concurrency is difficult in many server-side programming languages, and often leads to poor performance.[24] Node.js connects the ease of a scripting language (JavaScript) with the power of Unix network programming.[27]
Node.js was built on the Google V8 JavaScript engine since it was open-source under the BSD license, extremely fast, and proficient with internet fundamentals like HTTP, DNS, TCP.[24] Also, JavaScript was a well-known language, making Node.js immediately accessible to the entire web development community.[24]
Industry support
Thousands of open-source libraries have been built for Node.js, most of which are hosted on the npm website. Its developer community has two main mailing lists and the IRC channel #node.js on freenode. There is an annual Node.js developer conference, called NodeConf.[46]
The open source community developed server frameworks to accelerate the development of applications. Common frameworks include Connect, Express.js, Socket.IO, Koa.js, Hapi.js, Sails, Meteor, Derby, and many others.[27][47]
Modern desktop IDEs provide editing and debugging features specifically for Node.js applications. Such IDEs include Atom, Brackets, JetBrains WebStorm,[48][49] Microsoft Visual Studio (with Node.js Tools for Visual Studio,[50] or TypeScript with Node definitions[51][52][53][54]), NetBeans,[55] Nodeclipse Enide Studio[56] (Eclipse-based) and Visual Studio Code.[57][58] Certain online web-based IDEs also support Node.js, such as Codeanywhere, Cloud9 IDE and Koding. Regardless, any text editor such as Notepad++ may also be used in place of a IDE, albeit without code completion or debugging support.
Technical details
At its core, Node.js is a “proto-server” that processes incoming requests in a loop, called the event loop, and does nothing out-of-the-box.[3]
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.[59] 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 threadpool that is responsible for all non-blocking asynchronous I/O operations.[21]
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,[60] StrongLoop Process Manager[61] or pm2.[62] However, developers can increase the default number of threads in the libuv threadpool; these threads are likely to be distributed across multiple cores by the server operating system.[63]
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.[21]
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, Mac OS X, 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 Underscore.js to task runners like Grunt.[64]
Unified API
Node.js can be combined with a browser, a document database (such as 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 so that it is 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.[65] 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.
Alternatives
JXcore
JXcore is a fork of Node.js targeting mobile devices and IoTs. Its first beta was released in January 2014. It was open sourced[66] on February 13, 2015 and made available through a GitHub repository.[67] JXcore can use either of the Google V8 or Mozilla SpiderMonkey JavaScript engines. As a result, JXcore can run Node applications on iOS devices using SpiderMonkey.
Other languages
Similar open source event-driven server frameworks for other platforms include:
- EventMachine for Ruby
- libevent for C
- Perl Object Environment for Perl
- Twisted for Python
- Vert.x for Java, JavaScript, Groovy, Ruby, Python, Scala, Clojure and Ceylon
Node.js may utilize code written in other programming languages using:
- Edge.js allows .NET applications to run Node.js scripts in-process, and allows Node.js servers. to utilize .NET compiled code via async callbacks.[68][69][70]
- Luvit implements the Node.js APIs for the language Lua[71]
- Node-julia allows using Julia with Node.js/io.js
- The COBOL bridge for Node.js allows using COBOL with Node.js[72]
See also
- EventMachine
- List of JavaScript libraries
- MEAN (software bundle)
- Online JavaScript IDE
- Rhino (JavaScript engine)
- Twisted (software)
- Vert.x
References
- ↑ "node-v0.x-archive on Github". Retrieved 2 August 2014.
- ↑ "Node.js Previous Releases". Retrieved 20 January 2016.
- 1 2 Wen, Ben (2013-12-12). "6 things you should know about Node.js". JAVAWORLD. Archived from the original on 2013-12-12. Retrieved 2016-01-22.
- 1 2 "bomBora - Node.js for NonStop". Infrasoft. Retrieved 14 August 2015.
- ↑ "Node.js Foundation - Node.js". Retrieved 4 July 2015.
- ↑ "Linux Foundation Collaborative Projects". Retrieved 4 July 2015.
- ↑ Why GoDaddy’s Nodejitsu deal is great for Node.js, VentureBeat, February 10, 2015
- ↑ Geitgey, Adam (30 October 2013). "I-Tier: Dismantling the Monoliths". Groupon. Retrieved 30 April 2014.
- ↑ "IBM Bluemix". Retrieved 4 July 2015.
- ↑ "You'll never believe how LinkedIn built its new iPad app". VentureBeat. May 2, 2012. Retrieved May 10, 2012.
- ↑ "Blazing fast node.js: 10 performance tips from LinkedIn Mobile". Retrieved 7 April 2015.
- ↑ 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.
- ↑ "WebMatrix - Front End Web Developers take note (ASP.NET, PHP, node.js and more)". Retrieved 2 August 2014.
- ↑ Node.js in Flames November 19, 2014
- ↑ "Clash of the Titans: Releasing the Kraken, NodeJS @paypal". fluentconf.com. May 28, 2013. Retrieved September 11, 2013.
- ↑ "All such companies and their products in which Node.js is used". Retrieved 2 August 2014.
- ↑ "SAP AppBuilder". SAP. March 10, 2014. Retrieved March 10, 2014.
- ↑ The Node Ahead: JavaScript leaps from browser into future, The Register, March 1, 2011
- ↑ "Why Walmart is using Node.js". VentureBeat. January 24, 2012. Retrieved May 10, 2012.
- ↑ "Yahoo! Announces Cocktails Shaken, Not Stirred". Retrieved 7 April 2015.
- 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.
- ↑ Ryan Dahl (2010-11-09). "Joyent and Node". Google Groups. Retrieved 2015-02-05.
- ↑ 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.
- 1 2 3 4 5 Sams Teach Yourself Node.js in 24 Hours, Sams Publishing, 05-Sep-2012
- ↑ "Ryan Dahl at JSConf EU 2009".
- ↑ "Ryan Dahl at JSConf EU 2009 Video".
- 1 2 3 4 5 6 7 8 9 Professional Node.js: Building JavaScript Based Scalable Software, John Wiley & Sons, 01-Oct-2012
- ↑ "Video: Node.js by Ryan Dahl".
- ↑ "Porting Node to Windows". Retrieved 2 August 2014.
- ↑ Dahl, Ryan. "New gatekeeper". Retrieved 26 October 2013.
- ↑ Schlueter, Isaac (January 15, 2014). "The Next Phase of Node.js". Retrieved 21 January 2014.
- ↑ Krill, Paul (Dec 4, 2014). "Why io.js Decided to Fork Node.js". JavaWorld. Retrieved Dec 15, 2014.
- ↑ Q&A: Why io.js decided to fork Node.js, Infoworld Tech Watch
- ↑ Ben Noordhuis (Nov 12, 2014). "Issue 3692: function suddenly becomes undefined". V8 JavaScript Engine Issues. Retrieved 2 February 2015.
- ↑ Mikeal, Rogers (January 28, 2015). "State of io.js". Retrieved 2 February 2015.
- ↑ "Node.js Foundation Advances Community Collaboration, Announces New Members and Ratified Technical Governance". Retrieved 4 July 2015.
- ↑ "Node.js Foundation Combines Node.js and io.js Into Single Codebase in New Release". Retrieved 28 Jan 2016.
- ↑ "io.js and Node.js merge". Retrieved 27 June 2015.
- ↑ 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."
- 1 2 3 Node.js for PHP Developers, O'Reilly Media, Inc., 2013
- 1 2 3 Node.js Essentials, Packt Publishing, 09-Sep-2014
- ↑ Smashing Node.js: JavaScript Everywhere, John Wiley & Sons, 14-Aug-2012
- ↑ Sahil Chitkara. "Streams in node.js : Readable and Writable". TO THE NEW BLOG.
- ↑ Modules, Nodejs Website
- 1 2 "CoffeeScript on Node.js". O'Reilly Media, Inc. April 15, 2013. Retrieved May 17, 2015.
- ↑ Finley, Klint (April 7, 2011). "NodeConf Schedule Announced". ReadWriteHack. Retrieved 2 August 2014.
- ↑ Express.js Guide: The Comprehensive Book on Express.js, Azat Mardan, 28-May-2014
- ↑ Node.js, WebStorm supports integration with the Node.js runtime environment, WebStorm Help
- ↑ Running and Debugging Node.js, WebStorm Help
- ↑ "Node.js Tools for Visual Studio". Retrieved 1 Feb 2016.
- ↑ soywiz/typescript-node-definitions TypeScript's typings for some popular node.js modules, Github
- ↑ DefinitelyTyped, Github
- ↑ , The repository for high quality TypeScript type definitions
- ↑ ImageBoard, A Node.js + Express + MongoDB application built using TypeScript on the server, TypeScript Samples
- ↑ Krill, Paul (2015-11-10). "Node.js takes center stage in NetBeans 8.1". InfoWorld.
- ↑ Nodeclipse, Enide -- Node.JS development in Eclipse, Nodeclipse Website
- ↑ Hello Visual Studio Code (with NodeJS), Channel 9, Microsoft
- ↑ Node.js Applications with VS Code, Visual Studio Code
- ↑ "Node.js w/1M concurrent connections!". caustik's blog.
- ↑ "Cluster Node.js v5.5.0 Manual & Documentation".
- ↑ "StrongLoop Process Manager".
- ↑ "GitHub - Unitech/pm2: Production process manager for Node.js applications with a built-in load balancer". GitHub.
- ↑ Aleksander Kasiuk (22 April 2015). "On problems with threads in node.js - Future Processing".
- ↑ "Grunt: The JavaScript Task Runner".
- ↑ About Node.js, Node.js Website
- ↑ Serdar Yegulalp (20 February 2015). "Node.js fork JXcore goes open source, aims for mobile developers". InfoWorld. Retrieved 4 July 2015.
- ↑ "jxcore/jxcore". GitHub.
- ↑ Tomasz Janczuk. "Edge.js".
- ↑ Using Edge.js to combine Node.js and .NET, .NET Curry
- ↑ Edge.js bridges the gap between Node.js and .NET, TechRepublic, Tony Patton, July 1, 2014
- ↑ "Luvit.io".
- ↑ "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-1182-2754-1
- Randal L. Schwartz and Aaron Newcomb (9 January 2013). "Episode 237: Node.js". http://twit.tv/show/floss-weekly (Podcast). TWiT.tv. Event occurs at 1:08:13. Retrieved 9 January 2013. External link in
|website=
(help) - Ribeiro Pereira, Caio (July 2013), Aplicações web real-time com Node.js (First ed.), Casa do Código, p. 143, ISBN 978-85-66250-14-5
- 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-14-30260-58-5
External links
Wikimedia Commons has media related to Node.js. |
|
|
|