sudo apt-get install git然后安装nodejs,使用
sudo apt-get install nodejs安装 npm,使用
sudo curl http://npmjs.org/install.sh | sh然后在用户目录下新建一个文件夹:
mkdir cloud9在cloud9内执行
git clone git://github.com/ajaxorg/cloud9.git更文艺一点的做法:
git init git remote add origin git://github.com/ajaxorg/cloud9.git git fetch master git checkout master然后执行
bin/cloud9.sh初次执行,会下载一堆submodule,如果不幸中间网络中断了,可以使用
git submodule update下载完后会对这些submodule进行编译,可能会遇到libxml package prinstall Failed 的问题,
sudo apt-get install libxml2-dev最终成功后,会显示如下图:
cloud9.sh是可以带参数的,具体可使用 cloud9.sh --help查看用法
Show this help message --help Load the configuration from a config file. Overrides command-line options. Defau lt: <null> -c, --config <value> Run child processes with a specific group. Default: <false> -g, --group <value> Run child processes as a specific user. Default: <false> -u, --user <value> Activate debug-mode. Default: <false> -d, --debug Disable auto-open of the browser. -s, --silent Define an action to execute after the Cloud9 server is started. Default: <null> -a, --action <value> IP address where Cloud9 will serve from. Default: <127.0.0.1> -l, --ip <value> Port number where Cloud9 will serve from. Default: <3000> -p, --port <value> Path to the workspace that will be loaded in Cloud9 (may be relative or absolute ). Default: <.> -w, --workspace <value>
快捷键:Ctrl+数字可以切换编辑器中的文件,Ctrl+s保存文件,Ctrl+F5是debug,Shift+F5是stop,可以在preferences中设置vim mode使用vim方式编辑源码(大爱啊)等等,最下面的命令行窗口可以执行一些服务器端的命令如ls,git等,方便源代码管理
hi = -> arr = [1..3] last = x for x in arr console.log "#{last}" module.exports.hi = hi
require("coffee-script"); var test = require("./test"); test.hi();
nickwar@ubuntu:~$ git clone git://github.com/tanepiper/cloud9-livecoffee-ext.git cloud9/client/ext/livecoffee
然后在界面中的Windows->Extension Manager->User Extensions中输入"ext/livecoffee/livecoffee",点Add,即可加入此插件