Skip to content

Instantly share code, notes, and snippets.

@mikekunze
Created December 10, 2013 22:57
Show Gist options
  • Save mikekunze/7901928 to your computer and use it in GitHub Desktop.
Save mikekunze/7901928 to your computer and use it in GitHub Desktop.
sh script to quickly install node with express, coffee, and bower
#!/bin/sh
wget http://nodejs.org/dist/v0.10.22/node-v0.10.22-linux-x64.tar.gz
tar zxvf node-v0.10.22-linux-x64.tar.gz
mv node-v0.10.22-linux-x64 /opt/node
ln -s /opt/node/bin/node /bin/node
ln -s /opt/node/bin/npm /bin/npm
npm install -g coffee-script bower express
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment