Skip to content

Instantly share code, notes, and snippets.

@deciob
Created April 29, 2012 10:50
Show Gist options
  • Save deciob/2549334 to your computer and use it in GitHub Desktop.
Save deciob/2549334 to your computer and use it in GitHub Desktop.
Setting up spinejs in Linux Mint 12 (and possibly ubuntu)
# Setting up spinejs in Linux Mint 12
# Node Version Manager (see: https://github.com/creationix/nvm)
sudo apt-get install curl build-essential libssl-dev #dependencies
git clone git://github.com/creationix/nvm.git ~/src/nvm
. ~/src/nvm/nvm.sh #should add this to your ~/.bashrc
# Node.js
nvm install v0.6.15
nvm use v0.6.15
# Spine and hem
npm install -g spine.app hem
# At this point suppose you want to create a spine project called my_app in ~/
cd && spine app my_app && cd my_app && npm install . # this last command will install the dependencies listed in package.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment