@lizlalala
2016-05-07T19:29:59.000000Z
字数 1264
阅读 1135
node
markdown
sublime
**注意: **
这个时候新建一个文件会遇到每次运行都占用一个端口的问题,可以将Nodejs.sublime-settings文件在"file_regex"后加一行,就可以每次运行前将上一次的Kill掉再重新运行了。
"shell_cmd": "taskkill /F /IM node.exe & node \"$file\"",
以后就可以直接将nodejs文件夹拖入sublime里面,然后左侧就可以看到工作目录,新建文件或者文件夹,我们用chapter1.js来测试:
var http = require('http');
var os = require('os');
http.createServer(function(request, response) {
response.writeHead(200, { 'Content-Type': 'text/plain' });
response.end('hello\n');
}).listen(3001);
console.log('Server running at http://127.0.0.1:3001/');
ctrl+b build后在下面的控制台就有"Server running at http://127.0.0.1:3001/",然后浏览器中输入localhost:3001也有hello出现。
下面就可以开始我们node.js的学习啦~
markdown相关: