首頁 >開發工具 >sublime >Sublime下怎麼建立Node編譯系統

Sublime下怎麼建立Node編譯系統

藏色散人
藏色散人轉載
2021-03-11 11:44:552150瀏覽

下面由sublime教學專欄跟大家介紹Sublime下建立Node編譯系統方法,希望對需要的朋友有幫助!

Sublime下怎麼建立Node編譯系統

Sublime下建立Node編譯系統

做什麼的

在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編譯系統環境是不是灰嘗簡單(^ -^), 動手試試看!

#

以上是Sublime下怎麼建立Node編譯系統的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除