node入门学习一之http模块
初始化安装npm npm init -y
安装http模块 npm install http
新建app.js页面
const http=require('http')
const server=http.createServer((req,res)=>{
res.end('hello,node.js');
})
server.listen(3001);
执行终端命令 node app.js
浏览器访问http://localhost:3001,将看到 hello,node.js文字信息
http模块中有两个很重要的对象,requset和response
requset:获取客户端所有的请求信息
response:输出数据响应到客户端