安装node
https://nodejs.org/en/download/
var http = require('http')
http.createServer((req , res)=>{
res.writeHead(200,{"Content-Type" : "text/html;charset=utf-8"})
//console.log(req.url)
if(req.url=='/favicon.ico'){
return
}else if(req.url==="/index"){
res.write("<h2>I'm index</h2>")
}else if(req.url==="/home"){
res.write("<h2>I'm home</h2>")
}else{
res.write("notFound:404")
}
//req 浏览器给node带来的请求参数
//res 给浏览器的响应数据
res.end('end')
}).listen(3000 , ()=>{
console.log("success")
})
启动cmd命令行 输入node 文件名
运行
浏览器localhost:3000/index