Difference between revisions of "Node.js"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
Line 24: Line 24:
  
 
== External links ==
 
== External links ==
 +
 +
=== General ===
  
 
* [https://nodejs.org Official website]
 
* [https://nodejs.org Official website]
 +
* [https://ruk.si/notes/js/node_guidelines Node.js guide] @ ruk.si
 +
 +
=== Hello World ===
 +
 +
* [https://howtonode.org/hello-node Hello Node!] @ howtonode.org
 +
* [http://www.tutorialspoint.com/nodejs/nodejs_first_application.htm Node.js - First Application] @ tutorialspoint.com
 +
* [https://expressjs.com/en/starter/hello-world.html Hello world example] @ expressjs.com
 +
* [http://www.theprojectspot.com/tutorial-post/Node-js-for-beginners-part-1-hello-world/2 Node.js for beginners, part 1 - Hello world, and a bit of fun!] @ theprojectspot.com
 +
* [http://code.tutsplus.com/tutorials/nodejs-for-beginners--net-26314 Node.js for Beginners] @ code.tutsplus.com
 +
* [http://nodeguide.com/beginner.html Felix's Node.js Beginners Guide] @ nodeguide.com
 +
 +
=== Applications ===
 +
 +
* [https://ruk.si/notes/js/node_web_crawling Node.js web crawler] @ ruk.si
 +
  
  
 
[[Category:Computing]]
 
[[Category:Computing]]
 
[[Category:JavaScript]]
 
[[Category:JavaScript]]

Revision as of 14:32, 17 August 2016

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

Applications