Difference between revisions of "Node.js"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
 
(4 intermediate revisions by the same user not shown)
Line 20: Line 20:
 
* [[JavaScript]]
 
* [[JavaScript]]
 
* [[Node.js File System]]
 
* [[Node.js File System]]
 +
* [[Node.js library]]
 +
* [[npm (software)]]
 
* [[Web application]]
 
* [[Web application]]
 
* [[Web server]]
 
* [[Web server]]
Line 44: Line 46:
  
 
* [http://theholmesoffice.com/getting-ready-for-scalability-creating-an-mvc-framework-for-our-node-js-page/ Creating an MVC framework for our Node.js page]
 
* [http://theholmesoffice.com/getting-ready-for-scalability-creating-an-mvc-framework-for-our-node-js-page/ Creating an MVC framework for our Node.js page]
 +
* [https://scotch.io/tutorials/scraping-the-web-with-node-js Scraping the Web With Node.js]
 +
* [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 ===

Latest revision as of 19:41, 23 January 2018

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