第一篇 一、Node.js模块:模块使用npm运行管理。
- events:事件模块,提供事件触发和事件监听功能。
- util:核心功能模块,用于弥补核心JS功能的不足。
- fs:文件操作模块,提供文件操作API
- http:Web协议模块,提供Web协议交互功能
- express:Web框架,用于快速构建Web应用服务
- vm:沙箱模块,用于提供干净的上下文环境
// HTTP 状态值: 200
// 内容类型: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应数据 "Hello World"
response.end('Hello World\n');
}).listen(8888);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8888/');
//之后Node执行以下指令
node server.js
Server running at http://127.0.0.1:8888/
标签:Node,Web,http,require,笔记,js,模块 From: https://www.cnblogs.com/xiaoliman-byf/p/17989885