Node —— 基本使用
1. 构建服务端步骤:引入http模块(内置模块):const http = require("http")创建服务并监听端口号:http.createServer((req,res)=>{}).llisten(port,hostname,()=>{})(如果不填写主机名,则会监听任何IPV4地址的连接。如果在本地,则包括本地IP、localhost、127.0.0.1。如果...