赞
踩
1.下载SublimeText-Nodejs插件
下载地址:https://github.com/tanepiper/SublimeText-Nodejs
2.解压下载的文件后把SublimeText-Nodejs-master文件夹重命名为Nodejs
3.打开Sublime Text3,点击Perferences > Browse Packages打开“Packages”文件夹,并将Nodejs文件夹剪切进来
4.打开Nodejs文件夹下的Nodejs.sublime-build文件,
将 “encoding”: “cp1252” 改为 “encoding”: “utf8” ,保存文件
{
"cmd": ["node", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.js",
"shell": true,
"encoding": "utf8",
"windows":
{
"shell_cmd": "taskkill /F /IM node.exe & node $file"
},
"linux":
{
"shell_cmd": "killall node; /usr/bin/env node $file"
},
"osx":
{
"shell_cmd": "killall node; /usr/bin/env node $file"
}
}
5.打开Nodejs文件夹下的Nodejs.sublime-settings文件,
将 “node_command”:false改为 “node_command”: “C:\\Program Files\\nodejs\\node.exe” ,
将 “npm_command”: false 改为 “npm_command”: “C:\\Program Files\\nodejs\\node.exe” ,保存文件
{
"save_first": true,
"node_command": "C:\\Program Files\\nodejs\\node.exe",
"npm_command": "C:\\Program Files\\nodejs\\node.exe",
"node_path": false,
"expert_mode": false,
"output_to_new_tab": false
}
6.创建测试文件test.js
console.log('hello world');
7.按“ctrl+B”运行代码,运行结果如下图所示
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。