[coffeScript] coffee script 設定安裝
因為開發平台是使用mac,所以設定的部分將以mac為準。
###設定:
#####環境:
- mac os 10.7.2 (Lion)
- homebrew
先安裝好 homebrew,homebew的安裝法可參考: ihower的設定方法
接下來,先來安裝Node.js
1 | brew install node |
再來安裝npm (node package manager)
1 | curl http://npmjs.org/install.sh | sh |
接下來安裝coffee script
1 | npm install -g coffee-script |
將node_modules資料夾加到路徑之中
1 | export NODE_PATH=/usr/local/lib/node_modules |
當設定完成之後,可以直接按下
1 | node |
此時,會在畫面上看到進入了一個可以鍵入程式的環境,並且是以>開頭的畫面。接下來只要鍵入:
1 | require('coffee-script') |
如果出現了像以下的訊息
1 | { VERSION: '1.1.3', |
代表設定成功了。要退出目前的狀態只要Control C
按個二下就行了。
[coffeScript] coffee script 設定安裝
https://blog.walile.info/2011/12/16/2011-12-16-coffee-script-learning/