Node.js

From KevinWiki

(Difference between revisions)
Jump to: navigation, search
(Install Node.js and NPM)
(Install Node.js and NPM)
Line 7: Line 7:
  $ git checkout v0.10.20  
  $ git checkout v0.10.20  
  $ ./configure && make && sudo make install
  $ ./configure && make && sudo make install
 +
 +
During installation, if the following error occurs, install the <code>build-essential</code> package.
 +
$ sudo apt-get install build-essential

Revision as of 14:23, 17 October 2013

Install Node.js and NPM

$ git clone https://github.com/joyent/node.git 
$ cd node 
# Visit the Node.js website to find out the current version.
$ git checkout v0.10.20 
$ ./configure && make && sudo make install

During installation, if the following error occurs, install the build-essential package.

$ sudo apt-get install build-essential
Personal tools