- 监听:等待客户端的连接
- 端口:数字(一个端口 只有一个服务)
在终端运行js文件,在浏览器访问localhost:8080
//引入包
const http=require('http');
//请求
let server=http.createServer(function (req, res){
res.write('abc');
res.end();
console.log("服务启动成功");
});
//监听8080端口号
server.listen(8080);
在终端运行js文件,在浏览器访问localhost:8080
//引入包
const http=require('http');
//请求
let server=http.createServer(function (req, res){
res.write('abc');
res.end();
console.log("服务启动成功");
});
//监听8080端口号
server.listen(8080);
本文标题:node连接服务
本文链接:https://www.haomeiwen.com/subject/zytgqctx.html
网友评论