node.js HelloWord

  创建 server.js

 

var http = require("http");
http.createServer(function(req,res){

//设置请求头的编码格式
res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'});

//设置网页的编码格式(防止中文乱码)
res.write("<head><meta charset='utf-8'></head>");
res.write('helloword');
}).listen(8080);
console.log("服务器地址 localhost:8080");

使用node命令启动 server.js

运行结果

 

posted @ 2018-06-08 16:17  一毛买下世界  阅读(144)  评论(0编辑  收藏  举报