前端最新题库,点这里。
什么是Web服务器?
当应用程序(客户端)需要某一个资源时,可以向一个台服务器,通过Http请求获取到这个资源;提供服务器的这个服务器,就是一个Web服务器;
Web服务器
目前有很多开源的Web服务器:Nginx、Apache(静态)、Apache Tomcat(静态、动态)、Node.js
一. Http模板基本使用
1.1. 如何创建服务
1.1.1. Web服务器初体验
创建一个Web服务器的初体验:
const http = require('http');
const HTTP_PORT = 8000;
const server = http.createServer((req, res) => {
res.end("Hello World");
});
server.listen(8000, () => {
console.log(`