nodejs学习笔记<二> 使用node创建基础服务器

时间:2022-01-08 18:44:18

创建服务器的 server.js 内容。

var http = require("http");      // 引用http模块

http.createServer(function(request,response){
// 设置HTTP头
// 参数设置:状态码 状态信息(可选) 解析类型
response.writeHead(200,'Miragefirefox',{'Content-Type': 'text/plain'});
response.write("你好,世界!");
response.end();
}).listen("8080","127.0.0.1"); // 设置监听 端口号 服务器IP(可选 默认 127.0.0.1) console.log("success!");

使用nodejs创建服务器,必须引用http模块。调用 createServer 来创建服务器。

服务器运行成功,返回 console.log 中的字符串。

nodejs学习笔记<二> 使用node创建基础服务器

nodejs学习笔记<二> 使用node创建基础服务器