- 从官网安装 node.
- 打开sublime,工具->编译系统->新建编译系统
- 输入以下内容:
-
{ "cmd": ["node", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.js", "shell":true, "encoding": "utf8", "windows": { "cmd": ["taskkill","/F", "/IM", "node.exe","&","node", "$file"] }, "linux": { "cmd": ["killall node; node", "$file"] }, "osx": { "cmd": ["killall node; node $file"] } }
- 保存文件,文件名是node.sublime-build.
相关文章
- 01-27Unity生成的WebGL如何在浏览器中运行
- 01-27c – Sublime text 3 – 编译程序并在终端中运行
- 01-27VectorDraw常见问题整理:透明度如何在VDF中运行?
- 01-27如何在特定时间间隔内定期在python中运行任务?
- 01-27如何在setup.py脚本中运行所有测试?
- 01-27如何在HBuilder中运行npm命令
- 01-27揭秘 Spring Security 是如何在 Servlet 应用中运行的?
- 01-27IDEA中如何在maven项目中运行junit
- 01-27如何在Django中运行FFMPEG命令?
- 01-27如何在Android中创建自定义gridview(如矩阵结构)