准备工作
首先你得安装好node
建项目文件夹
切换到项目文件夹,比如新建一个myproject的文件夹。
在文件夹里建一个server.js的文件
内容如下
var http = require('http');
http.createServer(function (request, response) {
// 发送 HTTP 头部
// HTTP 状态值: 200 : OK
// 内容类型: 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/');
http = require('http');干嘛的?
引入node自带的http模块
http.createServer干嘛的?
创建服务器。
可以看到参数是一个函数,该函数又有两个参数
request 请求对象,想知道req有哪些属性,可以查看 “http.request 属性整合”。
response 响应对象 ,收到请求后要做出的响应。想知道res有哪些属性,可以查看 “http.response属性整合”。
listen是干嘛的?
http 模块提供的函数: createServer 。这个函数会返回 一个对象,这个对象有一个叫做 listen 的方法,这个方法有一个数值参数, 指定这个 HTTP 服务器监听的端口号。
如何运行上述服务器,打开终端
输入
node server.js
会返回一个地址
Server running at http://127.0.0.1:8888/
把上述地址输入到浏览器即可查看
如果不理解http协议需要学习
HTTP 消息结构 | 菜鸟教程