最近开始学习 node,想实现之前的打算,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")
而后间接运行该文件就是开启 HTTP 的服务了:
node index.js
在浏览器输出 127.0.0.1:8080
成果如下图:
还是先看看文档,再来写点笔记吧!