Created
August 4, 2012 13:32
-
-
Save Frobitz/3257794 to your computer and use it in GitHub Desktop.
Install CoffeeScript with Homebrew on OS X 10.8 Mountain Lion
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
# Install Homebrew | |
ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go) | |
# Follow on-screen instructions (X11 isn't necessary for this if it shows as not installed) | |
brew install node | |
# Open .bashrc and add this line (create .bashrc if its not in your home directory already) | |
export NODE_PATH=/usr/local/lib/node_modules | |
# Install NPM | |
curl https://npmjs.org/install.sh | sh | |
# Install CoffeeScript | |
npm install -g coffee-script | |
Thank you. Pretty straightforward.
nice
thanks, it's very helpful to me.
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you so much, worked as a charm.