Difference between revisions of "Node.js"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
Line 47: Line 47:
 
* [https://scotch.io/tutorials/scraping-the-web-with-node-js Scraping the Web With Node.js]
 
* [https://scotch.io/tutorials/scraping-the-web-with-node-js Scraping the Web With Node.js]
 
* [http://thenodeway.io/ The Node Way]
 
* [http://thenodeway.io/ The Node Way]
 +
* [https://code.tutsplus.com/tutorials/learning-server-side-javascript-with-nodejs--net-10044 Learning Server-Side JavaScript with Node.js] @ code.tutsplus.com
  
 
=== Applications ===
 
=== Applications ===

Revision as of 08:04, 19 July 2017

Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Description

Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.

Dependent libraries

Some libraries are dependent on Node.js.

See:

See also

External links

General

Hello World

Tutorials

Applications