coffeescript 的环境搭建

1, 下载node.js

wget http://nodejs.org/dist/v0.6.7/node-v0.6.7.tar.gz

2, install nodejs
make
make install

node -v
查看是否安装成功

3, install coffeescript

npm install -g coffee-script

也可以源代码安装
到git 下载源代码,然后运行

sudo bin/cake install

coffee -v

查看是否安装成功

4, coffee的简单的命令
coffee -c xxx
编译文件为js

coffee --watch --compile index.coffee
查看index.coffee文件每次保存的日志,并且自动编译

coffee --join project.js --compile src/*.coffee
将多个coffee文件编译成一个js文件

coffee -bpe "alert i for i in [0..10]"
编译单行代码到屏幕

coffee -o lib/ -cw src/
自动编译和观察整个项目

coffee
启动命令行模式


参考文档
1, http://nodejs.org/#

2, https://github.com/joyent/node

3, http://coffeescript.org/

你可能感兴趣的:(coffeescript 的环境搭建)