NodeJs

node连接服务

2019-06-23  本文已影响0人  简小园

在终端运行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);
上一篇下一篇

猜你喜欢

热点阅读