sublime中調試js代碼

首先安裝nodejs

固然你能夠使用其它諸如jsc之類的環境來運行js, 本文使用的是nodejs. 首先確保你的電腦已經安裝好nodejs, 並已將其添加到環境變量中 (通常安裝時自動添加或者詢問是否添加)html

添加build system

在sublime text中依次打開Tools -> Build System -> New Build System... 粘貼如下代碼後保存(如Node.sublime-build), 而後把Build System設成Automaticnode

{
    "cmd": ["node", "--use-strict", "--harmony", "$file"],
    "selector": "source.js"
}

說明

在以上的build文件中(Node.sublime-build), node是執行命令, --harmony和--use-strict是執行參數, $file是當前文件名, 因此一次build操做實際上至關於在命令行中執行了node --use-strict --harmony filename--harmony表示啓用ES Harmony features, 而這些features目前只能在strict模式下運行, 因此須要同時添加use-strict參數(詳見what-is-extended-mode).git

若是不想啓用es6的特性,把build文件更改爲如下代碼保存便可.es6

{
    "cmd": ["node", "$file"],
    "selector": "source.js"
}

 

使用

在sublime test中新建一個test.js文件, 而後輸入你的測試代碼, 好比:github

for (let i = 0; i < 3; i++) {
    console.log('i:', i);
}

使用快捷鍵ctrl + b, 將獲得如下執行結果:web

i: 0
i: 1
i: 2
[Finished in 0.1s]

注: 文件必須是存在於磁盤中的, 而不是untitled的, 不然sublime沒法找到相應的文件.segmentfault

退出使用escsublime-text

參考:https://segmentfault.com/a/1190000002291126測試

相關文章
相關標籤/搜索