Last active
December 21, 2015 10:09
-
-
Save jdolitsky/6289923 to your computer and use it in GitHub Desktop.
steps to get your computer setup for node.js development
This file contains 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
*Mac only | |
Sublime Text 2 | |
------------------------ | |
1.) go to http://www.sublimetext.com/2 | |
2.) download link for your OS | |
Xcode* | |
------------------------ | |
1.) go to App Store | |
2.) search for "xcode" | |
3.) install Xcode | |
Homebrew* | |
------------------------ | |
1.) open Terminal | |
2.) run this: ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
SSH keys | |
------------------------ | |
1.) open Terminal | |
2.) run this: ssh-keygen -t rsa | |
3.) ignore questions, press enter at each prompt | |
Git | |
------------------------ | |
1.) go to http://git-scm.com/download/mac | |
2.) download link for your OS | |
MongoDB | |
------------------------ | |
1.) open Terminal | |
2.) Mac: run "brew install mongodb" | |
Ubuntu: run "apt-get install mongodb" | |
Node.js | |
------------------------ | |
1.) open Terminal | |
2.) Mac: run "brew install node" | |
Ubuntu: run "apt-get install nodejs" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment