We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node.js 提供了 http 模块,其中封装了一个高效的 http 服务器和一个简易的 http 客户端,主要是用于创建一个能够处理和响应 http 响应的服务
Koa 使用 http 模块的 createServer 方法创建 HTTP 服务器,并将 createServer 方法提供的两个参数,请求对象(req),响应对象(res),用来封装自己的 request 对象和 response 对象。
const Emitter = require('events'); const http = require('http'); class Application extends Emitter { constructor() { super(); } /** * Shorthand for: * * http.createServer(app.callback()).listen(...) * * @param {Mixed} ... * @return {Server} * @api public */ listen(...args) { //创建http服务,接收一个回调函数 const server = http.createServer(this.callback); return server.listen(...args); } //接收两个参数request和response,分别表示请求和响应的信息。 callback(request, response) { //设置响应信息 response.end('hello koa'); } } const app = new Application(); //创建http服务器,监听1234端口 app.listen(1234, () => { console.log('koa app listen on 1234'); }); // 打开浏览器,输入localhost:1234 or 127.0.0.1:1234 ,就可以看到hello koa
demo 代码
上一节:Koa 源码分析之 EventEmitter 下一节:Koa 源码分析之 Use 方法
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Node.js 提供了 http 模块,其中封装了一个高效的 http 服务器和一个简易的 http 客户端,主要是用于创建一个能够处理和响应 http 响应的服务
Koa 使用 http 模块的 createServer 方法创建 HTTP 服务器,并将 createServer 方法提供的两个参数,请求对象(req),响应对象(res),用来封装自己的 request 对象和 response 对象。
demo 代码
上一节:Koa 源码分析之 EventEmitter
下一节:Koa 源码分析之 Use 方法
The text was updated successfully, but these errors were encountered: