sublime_Text中node.js的配置
Posted goderic1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sublime_Text中node.js的配置相关的知识,希望对你有一定的参考价值。
1、安装node.js
2、安装sublime_text
3、sublime中配置node.js ,注意重点来了!
在sublime菜单上找到Tools ---> Build System ---> new Build System,复制下面的配置内容:
{
"cmd"
: [
"node"
,
"$file"
],
"file_regex"
:
"^[ ]*File "(...*?)", line ([0-9]*)"
,
"selector"
:
"source.js"
,
"encoding"
:
"utf-8"
,
// "encoding": "cp936",根据自己需要编码格式,防止乱码。
"shell"
:
true
,
"windows"
:
{
"cmd"
: [
"taskkill"
,
"/F"
,
"/IM"
,
"node.exe"
,
"&"
,
"node"
,
"$file"
]
},
"linux"
:
{
"cmd"
: [
"killall node; node"
,
"$file"
]
}
}
以上是关于sublime_Text中node.js的配置的主要内容,如果未能解决你的问题,请参考以下文章