使用快捷鍵 cmd + shift + b
, 選擇配置任務「,而後」從模板建立tasks.json文件「,而後從列表中選擇」其餘「。若是沒有其餘選項,就隨便選一個。這樣就建立了一個tasks.json文件啦
node
{ "version": "2.0.0", "tasks": [ { "label": "console", "type": "shell", "osx": { "command": "/usr/local/bin/node ${file}" }, "linux": { "command": "/usr/bin/node ${file}" }, "windows": { "command": "C:\\Program Files\\nodejs\\node.exe ${file}" }, "group": { "kind": "build", "isDefault": true } } ] }
編輯以後保存便可。注意版本號,可能有些字段不支持了。linux
保存後,選擇一個js文件,使用快捷鍵cmd + shift + b
,就能夠看到js的console啦
shell