Last active
January 1, 2016 02:28
-
-
Save skippednote/8079028 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| # Create ~/.bashrc | |
| touch ~/.bashrc ~/.bash_profile | |
| # Setup NVM | |
| curl https://raw.github.com/creationix/nvm/master/install.sh | sh | |
| # Source Bash | |
| source ~/.bashrc | |
| # Install Latest Version of node | |
| nvm install v0.10.24 | |
| # Set NVM node default | |
| nvm alias default v0.10.24 | |
| #Install Socket.io | |
| npm install -g socket.io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment