1) 下載sublime並安裝,下載清單:http://www.jb51.net/softs/132432.html
2) 下載sublime的nodejs插件,需是整合Nodejs插件到sublime中,下載位址:https://github.com/tanepiper/SublimeText-Nodejs
3) 解壓縮zip文件, 並重新命名資料夾「Nodejs」
4) 開啟sublime,操作"preference" --> "Browse packages", 開啟一個目錄,這個目錄是眾多語言IDE插件的存放地。
5) 複製」Nodejs「資料夾到這個目錄。 這樣就可以了嗎? 醬樣子還不行,還要更改設定檔。
6) 開啟Nodejs資料夾,找到檔案“Nodejs.sublime-build”, 拖曳到sublime,顯示:
{ "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程式碼時終端顯示亂碼。
7) 要用sublime開啟檔案「Nodejs.sublime-settings」 或設定「preference」 --》 「package settings」 --」 「Nodejs」 --」「setting-default」 開啟檔案並更改成:
{ // 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 }