Nodejs
nodejs运行文件
node index.js
**url:**统一资源定位符
端口号:标记服务器里不同功能的服务程序 //http协议默认80端口 3000 8080 web服务
端口号范围:0-65535之间 0-1023被特定的占用了
http模块
1 | const http = require('http') |
localhost:127.0.0.1
node index.js
**url:**统一资源定位符
端口号:标记服务器里不同功能的服务程序 //http协议默认80端口 3000 8080 web服务
端口号范围:0-65535之间 0-1023被特定的占用了
1 | const http = require('http') |
localhost:127.0.0.1