Node.js

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

Node.js
Node.js logo.svg
Original author(s) Ryan Dahl
Developer(s) Node.js Developers, Joyent, GitHub Contributors
Initial release May 27, 2009 (2009-05-27)[1]
Stable release 5.4.1 / January 12, 2016 (2016-01-12)[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.org

Node.js is an open-source, cross-platform runtime environment for developing server-side web applications. Node.js applications are written in JavaScript and can be run within the Node.js runtime on a wide variety of platforms, including OS X, Microsoft Windows, Linux, FreeBSD, NonStop,[3] IBM AIX, IBM System z and IBM i. Its work is hosted and supported by the Node.js Foundation,[4] a collaborative project at the Linux Foundation.[5]

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 IBM,[6] Microsoft,[7][8] Yahoo!,[9] Walmart,[10] Groupon,[11] SAP,[12] LinkedIn,[13][14] Rakuten, PayPal,[15][16] Voxer,[17] GoDaddy.,[18] and Netflix.[19]

History

Ryan Dahl, creator of Node.js

Node.js was invented in 2009 by Ryan Dahl and other developers working at Joyent.[20] Node.js was first released in 2009 supporting only Linux. Its development and maintenance was led by Dahl and sponsored by Joyent, the firm where Dahl worked.[21]

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.[22]

The project was demonstrated at the inaugural European JSConf on November 8, 2009.[23][24][25] Dahl presented Node.js, which combined Google's V8 JavaScript engine, an event loop and a low-level I/O API.[20] The project received a standing ovation.[26]

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.[20]

In June 2011, Microsoft and Joyent implemented a native Windows version of Node.js.[27] 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.[28] In January 2014, Schlueter announced Timothy J. Fontaine would be the new project lead.[29]

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.[30]

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.[31]

Overview

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

Frameworks can be used to accelerate the development of applications, and common frameworks are Express.js, Socket.IO and Connect.[20][37] Node.js applications can run on Microsoft Windows, Unix, NonStop[3] and Mac OS X servers. Node.js applications can alternatively be written with CoffeeScript[38] (an alternative form of JavaScript), Dart or Microsoft TypeScript (strongly typed forms of JavaScript), or any other language that can compile to JavaScript.[38]

Node.js is primarily used to build network programs such as web servers, making it similar to PHP.[32] The biggest difference between PHP and Node.js is that most functions in PHP block until completion, while functions in Node.js are designed to post long lasting tasks to the underlying thread pool and then return to the caller in a non-blocking fashion. A registered callback is then called from the event loop to signal completion of the posted task. This allows enqueuing parallel tasks without explicit threading.[32]

Execution of parallel tasks in Node.js is handled by a thread pool. The main thread call functions that post tasks to the shared task queue which 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, which 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.

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, NodeConf.[39]

Technical

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.[40] The design of sharing a single thread between all the requests 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 which in turn uses a fixed-sized threadpool that is responsible for all non-blocking asynchronous I/O operations.

A downside of this single-threaded approach is that Node.js doesn't allow horizontal scaling by increasing the number of CPU cores of the machine it is running on without using an additional module, such as cluster,[41] StrongLoop Process Manager[42] or pm2.[43] 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.[44]

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.

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.[45]

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.[46] 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.

Tools

Desktop IDEs
Online code editors
Runtimes and debuggers
Application performance management
  • ruxit (cloud service, commercial) – SaaS based APM solution[49]
  • AppNeta (cloud service, commercial) – APM for Node.js and distributed environments.[50]
Frameworks
  • Server frameworks – Express.js, Socket.IO, Koa.js, Hapi.js, Total.js, Nodal[51][52][53]
  • MVC frameworks – Meteor, Derby, Sails, Mean, MeanJS, Tower.js, Nombo, Geddy, Compound, Yahoo! Mojito
Social networks
  • Node.js World – a social networking website for Node.js developers

Alternatives

io.js

io.js
io.js logo
Original author(s) Fedor Indutny
Developer(s) io.js Developers, GitHub Contributors
Initial release January 14, 2015 (2015-01-14)[54]
Stable release 3.0.0 / August 4, 2015 (2015-08-04)[55]
Development status Inactive
Written in C, C++, JavaScript
Operating system OS X, Linux, Microsoft Windows
Type Event-driven networking
License MIT
Website iojs.org

io.js was a fork of Node.js started in December 2014[30] by a contributor to the Node.js project.[56] It was expected to be marked stable in March 2015.[57] The reason given for forking Node.js was the authors' concern about working on a project under corporate governance; they created an "open governance" system for io.js, run by a technical steering committee.[56]

Like Node.js, it is an open source, cross-platform runtime environment for server-side and networking applications. io.js applications are written in JavaScript, and can be run within the io.js runtime on OS X, Microsoft Windows, and Linux. io.js provides an event-driven architecture and a non-blocking I/O API that optimizes an application's throughput and scalability.

io.js uses the Google V8 JavaScript engine to execute code, but unlike Node.js,[58] the authors plan to keep io.js up-to-date with latest releases of V8.[57]

On May 15, 2015, the io.js organization voted to officially merge back with the Node.js project under the governance of a new foundation called the Node Foundation.[59] The organization is named 'nodejs' on GitHub.

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[60] on February 13, 2015 and made available through a GitHub repository.[61] 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

Node.js environments available for other programming languages include:

  • Luvit implements the Node.js APIs for the language Lua[62]
  • Node-julia allows using Julia with Node.js/io.js
  • The COBOL bridge for Node.js allows using COBOL with Node.js[63]

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. 3.0 3.1 Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. The Node Ahead: JavaScript leaps from browser into future, The Register, March 1, 2011
  18. Why GoDaddy’s Nodejitsu deal is great for Node.js, VentureBeat, February 10, 2015
  19. Node.js in Flames November 19, 2014
  20. 20.0 20.1 20.2 20.3 20.4 20.5 20.6 Professional Node.js: Building JavaScript Based Scalable Software, John Wiley & Sons, 01-Oct-2012
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. 23.0 23.1 Sams Teach Yourself Node.js in 24 Hours, Sams Publishing, 05-Sep-2012
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. http://www.jsconf.eu/2009/video_nodejs_by_ryan_dahl.html
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. Lua error in package.lua at line 80: module 'strict' not found.
  30. 30.0 30.1 Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.
  32. 32.0 32.1 32.2 Node.js for PHP Developers, O'Reilly Media, Inc., 2013
  33. 33.0 33.1 33.2 Node.js Essentials, Packt Publishing, 09-Sep-2014
  34. Smashing Node.js: JavaScript Everywhere, John Wiley & Sons, 14-Aug-2012
  35. Streams in node.js : Readable and Writable
  36. Modules, Nodejs Website
  37. Express.js Guide: The Comprehensive Book on Express.js, Azat Mardan, 28-May-2014
  38. 38.0 38.1 Lua error in package.lua at line 80: module 'strict' not found.
  39. Lua error in package.lua at line 80: module 'strict' not found.
  40. http://blog.caustik.com/2012/08/19/node-js-w1m-concurrent-connections/
  41. cluster
  42. StrongLoop Process Manager
  43. pm2
  44. http://www.future-processing.pl/blog/on-problems-with-threads-in-node-js/
  45. Grunt
  46. About Node.js, Node.js Website
  47. Lua error in package.lua at line 80: module 'strict' not found.
  48. Lua error in package.lua at line 80: module 'strict' not found.
  49. Lua error in package.lua at line 80: module 'strict' not found.
  50. Lua error in package.lua at line 80: module 'strict' not found.
  51. Node.js Framework Comparison: Express vs. Koa vs. Hapi, AirPair
  52. Lua error in package.lua at line 80: module 'strict' not found.
  53. Lua error in package.lua at line 80: module 'strict' not found.
  54. Lua error in package.lua at line 80: module 'strict' not found.
  55. Lua error in package.lua at line 80: module 'strict' not found.
  56. 56.0 56.1 Q&A: Why io.js decided to fork Node.js, Infoworld Tech Watch
  57. 57.0 57.1 Lua error in package.lua at line 80: module 'strict' not found.
  58. Lua error in package.lua at line 80: module 'strict' not found.
  59. Lua error in package.lua at line 80: module 'strict' not found.
  60. Lua error in package.lua at line 80: module 'strict' not found.
  61. https://github.com/jxcore/jxcore
  62. Luvit
  63. [1] COBOL bridge for Node.js

Further reading

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.

External links