这一篇来个Node.js的
写代码之前一定要把Node.js装上哈!
新建一个文件index.js
打开这个文件,在里面写段代码
var module = require('http');
module.createServer(function(req, resp) {
resp.writeHead(200, {'content-Type':'text/plain'});
resp.end('Hello World!');
}).listen(9001)
console.log('Server is running on port over 9001');
打开terminal
cd
到那个文件所在文件夹
然后键入,回车,你可以看到Server已经运行起来了
node index.js
这个时候打开你的浏览器,在地址栏输入 http://localhost:9001
hello world !
出现了。