在Node下創建編譯系統主要的做用是方便開發調試文件node
選擇 "工具" -> "編譯系統" -> '編譯新系統', 輸入以下內容:工具
{ "cmd": ["node", "$file"], "selector": "source.js" }
Ctrl + S 保存爲node.sublime-bulid 便可測試
創建測試文件server.js文件內容以下:ui
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鍵關閉編譯框code
小夥伴們在Sublime下創建Node編譯系統環境是否是灰嘗簡單(^-^), 動手試一下吧!server