Ubuntu server 12.04/nodejs

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "<source lang="bash"> apt-get install nodejs npm </source>")
 
m
 
Line 1: Line 1:
 +
It's tempting to do this, but don't:
 
<source lang="bash">
 
<source lang="bash">
 
apt-get install nodejs npm
 
apt-get install nodejs npm
 +
</source>
 +
 +
==Do This==
 +
<source lang="bash">
 +
WDIR=$(mktemp -d)
 +
cd ${WDIR}
 +
git clone git://github.com/joyent/node.git
 +
cd node
 +
./configure
 +
make
 +
# pause
 
</source>
 
</source>

Latest revision as of 09:42, 6 October 2013

It's tempting to do this, but don't:

apt-get install nodejs npm

[edit] Do This

WDIR=$(mktemp -d)
cd ${WDIR}
git clone git://github.com/joyent/node.git
cd node
./configure
make
# pause
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox