Revisions
-
elliottb revised this gist
May 3, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev python git clone https://github.com/joyent/node.git cd node -
clemherreman revised this gist
Feb 20, 2012 . No changes.There are no files selected for viewing
-
clemherreman created this gist
Feb 20, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev git clone https://github.com/joyent/node.git cd node # 'git tag' shows all available versions: select the latest stable. git checkout enter-a-version # Configure seems not to find libssl by default so we give it an explicit pointer. # Optionally: you can isolate node by adding --prefix=/opt/node ./configure --openssl-libpath=/usr/lib/ssl make make test sudo make install node -v # it's alive! # Luck us: NPM is packaged with Node.js source so this is now installed too # curl http://npmjs.org/install.sh | sudo sh npm -v # it's alive!