Difference between revisions of "Node.js"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→See also) |
Karl Jones (Talk | contribs) |
||
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 13:32, 17 August 2016
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.
Contents
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
- Official website
- Node.js guide @ ruk.si
Hello World
- Hello Node! @ howtonode.org
- Node.js - First Application @ tutorialspoint.com
- Hello world example @ expressjs.com
- Node.js for beginners, part 1 - Hello world, and a bit of fun! @ theprojectspot.com
- Node.js for Beginners @ code.tutsplus.com
- Felix's Node.js Beginners Guide @ nodeguide.com
Applications
- Node.js web crawler @ ruk.si