//先在集成终端输出(启动);在输入网址(127.0.0.1:3000)或locallhost:3000
//搭建服务器
const http = require("http"); //引入http模板
let server = http.createServer(function(req,res){ //request请求 response响应
res.write("<head><meta charset =‘utf-8‘></head>")
res.write("<body><h1>hello word 你好啊.世界<h1></body>");
res.end();
});
// server.listen(3000); //监听 2种写法
server.listen(3000,function(){
console/log("嘿嘿,你在干嘛呢");
})
//查看自己的IP地址;window+R输入cmd再输入ipconfig