如何在sublime中安装coffeescript插件【整理】

参考

http://www.cnblogs.com/2gua/archive/2012/07/05/2577603.html

http://www.cnblogs.com/2gua/archive/2012/07/04/2576352.html

http://cnodejs.org/topic/4f2b97b5aa8e490b110bed78

1,安装node

2,安装CoffeeScript (npm install -g coffee-script)

3,找到coffee.cmd所在路径

4,选sublime菜单中的Tools->Bulid System->new Build System

5,输入


{
    "cmd": ["C:\\Users\\user\\AppData\\Roaming\\npm\\coffee.cmd(视具体的路径)", "-c","$file","&&", "C:\\Users\\user\\AppData\\Roaming\\npm\\coffee.cmd","$file"]
}


ps:-c:生成js 。"&&"又能在控制台里显示。

保存

6,选sublime菜单中的Preferences->Browser Packages...

7,在所在文件新建文件夹 CoffeeScript

8,在该文件夹中新建CoffeeScript.tmLanguage文件,文件内容为https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Syntaxes/CoffeeScript.tmLanguage的内容




新建hello.coffee文件:

console.log 'Hello, Coffee! Hello, DP!'

CTRL+B,运行 就能在控制台输出内容。并且在该路径生成 hello.js


ps:

发现只有保存在

C:\Users\user\AppData\Roaming\Sublime Text 2\Packages\User 的coffee文件才能被编译。。。好奇怪,有点不爽哇



你可能感兴趣的:(软件安装)