1) 下載sublime並安裝,下載列表:http://www.sublimetext.com/2 node
2) 下載sublime的nodejs插件,需是集成Nodejs插件到sublime中,下載地址:https://github.com/tanepiper/SublimeText-Nodejs linux
3) 解壓zip文件, 並重命名文件夾「Nodejs」 git
4) 打開sublime,操做"preference" --> "Browse packages", 打開一個目錄,這個目錄是衆多語言IDE插件的存放地。 github
5) 複製」Nodejs「文件夾到這個目錄。 這樣就能夠了嗎? 醬樣子還不行,還要更改配置文件。 shell
6) 打開Nodejs文件夾,找到文件「Nodejs.sublime-build」, 拖拽到sublime,顯示: npm
{ "cmd": ["node", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.js", "shell":true, "encoding": "cp1252", "windows": { "cmd": ["taskkill /F /IM node.exe & node", "$file"] }, "linux": { "cmd": ["killall node; node", "$file"] } }
須要更改上面標註的地方, 要更改encoding爲GB2312或者utf8,若是不更改此屬性可能致使build nodejs代碼時終端顯示亂碼。 windows
7) 要用sublime打開文件「Nodejs.sublime-settings」 或者 設置「preference」 --》 「package settings」 --》 「Nodejs」 --》「setting-default」 打開文件並 更改爲: ui
{ // save before running commands "save_first": true, // if present, use this command instead of plain "node" // e.g. "/usr/bin/node" or "C:\bin\node.exe" "node_command": /usr/bin/nodejs, // Same for NPM command "npm_command": /usr/bin/npm, // as 'NODE_PATH' environment variable for node runtime "node_path": false, "expert_mode": false, "ouput_to_new_tab": false }