Sublime Text 运行js

Posted 小兔无情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sublime Text 运行js相关的知识,希望对你有一定的参考价值。

首先安装nodejs

当然你可以使用其它诸如jsc之类的环境来运行js, 本文使用的是nodejs. 首先确保你的电脑已经安装好nodejs, 并已将其添加到环境变量中 (一般安装时自动添加或者询问是否添加)

添加build system

在sublime text中依次打开Tools -> Build System -> New Build System... 粘贴以下代码后保存(如javascript.sublime-build), 然后把Build System设成Automatic

{
  "cmd": ["/usr/local/bin/node", "$file"],
  "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
  "selector": "source.javascript"
}

说明:Mac的node安装目录:/usr/local/bin/node 

使用快捷键command + b





以上是关于Sublime Text 运行js的主要内容,如果未能解决你的问题,请参考以下文章

Sublime Text3自定义代码片段

如何在Sublime Text中添加代码片段

sublime text3 增加代码片段(snipper)

sublime Text emmet插件使用手册

sublime text 3 添加 javascript 代码片段 ( snippet )

Sublime Text自定制代码片段(Code Snippets)