Difference between revisions of "Node.js"
Jump to navigation
Jump to search
(link to cheatsheet) |
(Adds reference to Grunt) |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | Node.js is a platform for doing network applications using [[JavaScript]] on the client and server. Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine. The community is well-developed and there are many pre-written 'modules'. [[wp:Node.js]] | |
− | |||
− | |||
− | Node.js is a platform for doing network applications using [[JavaScript]] on the client and server. Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine. The community is well-developed and there are many pre-written 'modules'. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
* [http://nodejs.org/ Node.js official website] | * [http://nodejs.org/ Node.js official website] | ||
− | * [http://nodejs.org/api/index.html Node.js API docs] | + | * [http://nodejs.org/api/index.html Node.js API docs] |
* [http://npmjs.org/ npm] - the official package manager for Node.js | * [http://npmjs.org/ npm] - the official package manager for Node.js | ||
* [https://github.com/creationix/nvm nvm] - Node Version Manager. A bash script to manage multiple active node.js versions. Although the packaged node.js for Ubuntu 12.04 is rather old, nvm allows you to instantly use the newest version; and use multiple versions (if your projects have certain dependencies) without problem. | * [https://github.com/creationix/nvm nvm] - Node Version Manager. A bash script to manage multiple active node.js versions. Although the packaged node.js for Ubuntu 12.04 is rather old, nvm allows you to instantly use the newest version; and use multiple versions (if your projects have certain dependencies) without problem. | ||
* [https://nodejsmodules.org/ nodejs modules] | * [https://nodejsmodules.org/ nodejs modules] | ||
* [http://nodeguide.com/index.html Felix's Node.js Guide] | * [http://nodeguide.com/index.html Felix's Node.js Guide] | ||
− | |||
* Learnable.com has an intro to node.js course which is valuable. | * Learnable.com has an intro to node.js course which is valuable. | ||
* [http://nodeschool.io/ Node School] | * [http://nodeschool.io/ Node School] | ||
Line 26: | Line 14: | ||
* [https://angularjs.org/ AngularJS] - a 100% JavaScript client-side templating framework that provides data binding. Not related to node.js, but useful on the client-side. | * [https://angularjs.org/ AngularJS] - a 100% JavaScript client-side templating framework that provides data binding. Not related to node.js, but useful on the client-side. | ||
* [http://eirikb.github.io/nipster/ nipster] search for npm modules | * [http://eirikb.github.io/nipster/ nipster] search for npm modules | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | [[Category:JavaScript]] | + | When doing nodejs development, you may also wish to employ '<nowiki>[http://gruntjs.com/ Grunt]</nowiki>' which is a task runner for performing repetitive tasks like minification, compilation, unit testing, linting, etc.[[Category:JavaScript]] |
Revision as of 10:58, 13 May 2014
Node.js is a platform for doing network applications using JavaScript on the client and server. Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine. The community is well-developed and there are many pre-written 'modules'. wp:Node.js
- Node.js official website
- Node.js API docs
- npm - the official package manager for Node.js
- nvm - Node Version Manager. A bash script to manage multiple active node.js versions. Although the packaged node.js for Ubuntu 12.04 is rather old, nvm allows you to instantly use the newest version; and use multiple versions (if your projects have certain dependencies) without problem.
- nodejs modules
- Felix's Node.js Guide
- Learnable.com has an intro to node.js course which is valuable.
- Node School
- Socket.io a node.js module for WebSockets
- Express - a web application framework for node
- NeDB Node embedded database similar to MongoDB
- AngularJS - a 100% JavaScript client-side templating framework that provides data binding. Not related to node.js, but useful on the client-side.
- nipster search for npm modules
When doing nodejs development, you may also wish to employ '[http://gruntjs.com/ Grunt]' which is a task runner for performing repetitive tasks like minification, compilation, unit testing, linting, etc.