Friday, January 06, 2012
Friday, December 30, 2011
How to install/uninstall node modules in windows 7?
To install node module
- Start command prompt as administrator. For help see this link.
- Go to the folder where nodejs installed. Example: CD "C:\Program Files\nodejs\"
- Again go to the folder of node_modules under npm. Example: CD "node_modules\npm\node_modules"
- Execute command "npm install http-proxy"
To uninstall node module
- Follow Step 1 to 3 of above.
- Execute command "npm uninstall http-proxy"
Third Party Modules of Node.js
Wednesday, December 21, 2011
What is Node.js ?
Node is a server-side JavaScript interpreter that changes the notion of how a server should work. Its goal is to enable a programmer to build highly-scalable applications and write code that handles tens of thousands of simultaneous connections on one, and only one, physical machine.
Read More:
http://www.ibm.com/developerworks/opensource/library/os-nodejs/index.html
http://www.nodebeginner.org/
Read More:
http://www.ibm.com/developerworks/opensource/library/os-nodejs/index.html
http://www.nodebeginner.org/
Subscribe to:
Posts (Atom)