HTTP服务器
Node.js的核心功能之一就是作为web服务器,在Node的标准库中提供了http模块,其中封装了一个高效的HTTP服务器和一个简易的HTTP客户端。Node.js可以作为服务器提供服务,他跳过了类似Apache,IIS等HTTP服务器,内建了HTTP服务器支持,无需额外搭建一个HTTP服务器,便可以轻而易举地实现网站和服务器的结合。
Node中的HTTP接口的被设计成可以支持许多HTTP协议中原本用起来很困难的特性,特别是对于很大的或者块编码的消息.这些接口不会完全缓存整个请求(request)或响应(response),这样用户可以在请求(request)或响应(response)中使用数据流。若想使用Node中的HTTP服务或客户端功能,需引用此模块require(‘http’)。
Node.js中Http的Api
In order to support the full spectrum of possible HTTP applications, Node’s HTTP API is very low-level. It deals with stream handling and message parsing only. It parses a message into headers and body but it does not parse the actual headers or the body.
为了能全面地支持可能的HTTP应用程序,Node提供的HTTP API都很底层。它只处理流处理和消息解析。它把一份消息解析成报文头和报文体,但是它不解析实际的报文头和报文体。
搭建简易的Node.js服务器
//1、加载http模块
var http = require('http')
//2、使用http.createdServer()方法创建web服务器
var Server = http.createdServer()
//3、服务器客户端的请求
Server.on('request',function(req,res){
res.end('hello world')
})
Server.listen(3000,function(){
console.log('服务器启动成功')
})