node_http模块
2021-04-12 01:26
标签:监听 通道 listen 创建 运行 div 提示符 获得 bsp node_http模块 标签:监听 通道 listen 创建 运行 div 提示符 获得 bsp 原文地址:https://www.cnblogs.com/JunLan/p/12404323.html// require语法 导入模块
//http,node内置模块
let http = require(‘http‘)
//创建一个服务器通道, 并传入回调函数
let server = http.createServer((request, response) => {
//回调函数接受request对象和response对象
// 获得HTTP请求的method和url:
console.log(request.method + ‘: ‘ + request.url);
// 将HTTP响应200写入response, 同时设置Content-Type: text/html:
response.writeHead(200, {‘Content-Type‘: ‘text/html‘});
// 将HTTP响应的HTML内容写入response:
response.end(‘
Hello world!
‘);
})
// 让服务器监听8888端口:
server.listen(8888);
console.log(‘Server is running at http://127.0.0.1:8080/‘);
//在命令提示符下运行该程序,可以看到//以下输出:
//$ node hello.js
//Server is running at http://127.0.0.1:8080/