【SRH】------node创建简单的服务器
//引入核心模块http
const http = require('http');
//创建服务器
http.createServer((req,res)=>{
//设置请求成功的状态码,类型,charset=utf8解决乱码问题
res.writeHead(200,{"content-type":"text/plain;charset=utf8"});
//向客户端发送最后一次信息(必须的,否则服务器就会一直运行)
res.end("还好");
}).listen("3000")//设置端口号