Return to Snippet

Revision: 50496
at August 24, 2011 22:05 by iloveitaly


Initial Code
#!/bin/bash
mkdir ~/tmp
curl http://nodejs.org/dist/node-v0.4.10.tar.gz -O
tar -xvf node-v0.4.10.tar.gz
cd node-v0.4.10
./configure --prefix=/usr && make
sudo make install
curl http://npmjs.org/install.sh | sh
npm install less -g

Initial URL


Initial Description
Works on dreamhost VPS (remove the sudos & install in your user directory and it should work fine on shared hosting too).

Initial Title
Install NodeJS + LESS

Initial Tags


Initial Language
Bash