共计 386 个字符,预计需要花费 1 分钟才能阅读完成。
// http.js
// 引入内置 http 模块
var http = require("http")
// 创建服务器
var server = http.createServer(function(req,res){
// // 设置响应状态码,响应头(编码格式)res.writeHead(200, {"Content-Type" : "text/plain; charset=utf-8"});
// // 设置响应内容
res.write("hello node.js!");
// // 结束响应
res.end()})
// 设置服务器端口
server.listen(3000)
运行服务器
在 CMD 命令窗口中切换到该服务器文件所在目录,然后 输入 node http.js
,回车!
浏览器打开测试
打开浏览器,在地址栏输入 localhost:3000, 回车!
原文详解:https://www.cnblogs.com/saber…
正文完