配置一共有两种方式
-
无Node模式
"cmd":["/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Resources/jsc", "$file"],
"selector": "source.js"
替换完成后默认路径保存,测试结果:
这种配置不能使用console.log输出,只能使用debug输出
- 有Node模式
- 检查是否安装Node,打开终端,输入命令:
node -v
输出版本号则安装过
- 重复上种方法NewBuildSystem
![Snip20170910_3.png](http://upload-images.jianshu.io/upload_images/1437256-ef0ac2f372593a6b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
"cmd": ["node", "$file"],
"selector": "source.js"
替换成以上内容,如果不成功则进入终端输入命令
which node
输出的结果替换"cmd": ["node", "$file"]中的node即可,比如:
"cmd": ["/usr/local/bin/node", "$file"],
"selector": "source.js"
最后结果: