赞
踩
插件的下载地址为https://github.com/tanepiper/SublimeText-Nodejs
有两种安装方式:
1.下载压缩包到本地,解压到D:\Program Files (x86)\Sublime Text 3.3126x64\Data\Packages下
2.使用Git命令下载到Packages目录,如下
git clone https://github.com/tanepiper/SublimeText-Nodejs
1.打开Packages目录下的nodejs目录,然后打开编辑Nodejs.sublime-build
修改encoding值为:cp936。主要避免乱码。
修改windows如下:
注意这里的cmd,有的是shell_cmd,但是这样在windows下不能正常编译,所以要改为cmd,后面的添加上去即可。
2.重启sublime text 3,然后编写一段代码验证,代码如下:
var http = require('http');
var os = require('os');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type' : 'text/plain'});
response.end('Hello World\n');
}).listen(3000);
console.log('Server running at http://127.0.0.1:3000/');
ctrl + b编译这段代码后,会输出成功的提示:
然后,打开浏览器,输入http://127.0.0.1:3000/,输出Hello World,则说明交互正常:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。