做什麼的
在Node下建立編譯系統主要的作用是方便開發偵錯檔案
怎麼建立
選擇"工具" -> "編譯系統" - > '編譯新系統', 輸入如下內容:
{ "cmd": ["node", "$file"], "selector": "source.js" }
登入後複製
Ctrl S 儲存為node.sublime-bulid 即可
怎麼使用
建立測試檔server.js檔案內容如下:
const http = require('http'); const hostname = 'localhost'; const port = '3000'; const server = http.createServer((req, res) => { res.writeHead(200, {'content-type': 'text/plain'}); res.end('hello world'); }); server.listen(port, hostname, () => { console.log(`server is running at http://${hostname}:${port}`); });
登入後複製
按快捷鍵Ctrl B 執行檔編譯, 輸出如下內容則說明Sublime下的Node編譯系統建立成功
server is running at http://localhost:3000
登入後複製
按Esc鍵關閉編譯框
#小夥伴們在Sublime下建立Node編譯系統環境是不是灰嘗簡單(^ -^), 動手試試看!