Node创建HTTP服务

最近准备继续学习Node了,先创建HTTP服务试试:

const http = require('http');
// 创建HTTP服务
const server = http.createServer((request, response) => {
    response.writeHead(200, { 'Content-Type': 'text/plain' })
    response.end("hello worle!");
});
server.listen(8080);

console.log("dvdfb")

然后直接运行该文件,在浏览器打开127.0.0.1:8080
效果如下图:
Node创建HTTP服务

今天就这样吧,先看看文档后再写写!

上一篇:camunda


下一篇:基于迪科斯彻算法(Dijkstra's algorithm)的次短路径问题的java实现