Skip to content

Instantly share code, notes, and snippets.

View koostudios's full-sized avatar

KOO Studios koostudios

View GitHub Profile
@koostudios
koostudios / jumpstart-node.sh
Last active October 9, 2015 08:48
JumpStart Script: NodeJS
#!bin/bash
# JumpStart NodeJS on Ubuntu - installs NodeJS. Copy the following line and run!
# wget https://raw.github.com/gist/3472910/jumpstart-node.sh && sudo chmod +x jumpstart-node.sh && sudo ./jumpstart-node.sh
sudo apt-get update
sudo apt-get install make g++ python git libssl-dev
git clone git://github.com/joyent/node.git
cd node
git checkout v0.10.26
./configure