OS X: How to install CoffeeScript with NodeJS
Install node.js by homebrew
If you can't link node and it display error with 'permission' you should change permission on node directory such as sudo chmod 777 /usr/local/include/node/
then you must have npm (Node Packaged Modules) first
curl https://npmjs.org/install.sh | sh
when you install npm finished then install coffeescript
npm install -g coffee-script
If you would like add /usr/local/lib/node to PATH or NODE_PATH you can type like this
export PATH=$PATH:/usr/local/lib/node
export NODE_PATH=$NODE_PATH:/usr/local/lib/node
install textmate coffeescript bundles
mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScript.tmbundle
How To Install CoffeeScript On Mac OS X
How to install coffee-script, and how to enable textmate bundler to compile coffeescript (gist)
textmate bundle for coffeescript (stackoverflow)
coffee-script-tmbundle (github)