const http = require('http')
http.createServer((req,res)=>{
/*
req 前端的请求
res 后端的响应
*/
//Content-Type:text/plain 后端给前端响应的数据的格式
res.writeHead(200,{"Content-Type":"text/plain"})
res.end("hello world")
}).listen(4000,()=>{
console.log('服务器开启成功');
})
node.js --原生 JavaScript
koa.js 将node.js进行了封装 jQuery