UNPKG

17.3 kBMarkdownView Raw
1<img src="/docs/logo.png" alt="Koa middleware framework for nodejs"/>
2
3 [![gitter][gitter-image]][gitter-url]
4 [![NPM version][npm-image]][npm-url]
5 [![build status][travis-image]][travis-url]
6 [![Test coverage][coveralls-image]][coveralls-url]
7 [![OpenCollective Backers][backers-image]](#backers)
8 [![OpenCollective Sponsors][sponsors-image]](#sponsors)
9 [![PR's Welcome][pr-welcoming-image]][pr-welcoming-url]
10
11 Expressive HTTP middleware framework for node.js to make web applications and APIs more enjoyable to write. Koa's middleware stack flows in a stack-like manner, allowing you to perform actions downstream then filter and manipulate the response upstream.
12
13 Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~570 SLOC codebase. This
14 includes things like content negotiation, normalization of node inconsistencies, redirection, and a few others.
15
16 Koa is not bundled with any middleware.
17
18## Installation
19
20Koa requires __node v7.6.0__ or higher for ES2015 and async function support.
21
22```
23$ npm install koa
24```
25
26## Hello Koa
27
28```js
29const Koa = require('koa');
30const app = new Koa();
31
32// response
33app.use(ctx => {
34 ctx.body = 'Hello Koa';
35});
36
37app.listen(3000);
38```
39
40## Getting started
41
42 - [Kick-Off-Koa](https://github.com/koajs/kick-off-koa) - An intro to Koa via a set of self-guided workshops.
43 - [Workshop](https://github.com/koajs/workshop) - A workshop to learn the basics of Koa, Express' spiritual successor.
44 - [Introduction Screencast](https://knowthen.com/episode-3-koajs-quickstart-guide/) - An introduction to installing and getting started with Koa
45
46
47## Middleware
48
49Koa is a middleware framework that can take two different kinds of functions as middleware:
50
51 * async function
52 * common function
53
54Here is an example of logger middleware with each of the different functions:
55
56### ___async___ functions (node v7.6+)
57
58```js
59app.use(async (ctx, next) => {
60 const start = Date.now();
61 await next();
62 const ms = Date.now() - start;
63 console.log(`${ctx.method} ${ctx.url} - ${ms}ms`);
64});
65```
66
67### Common function
68
69```js
70// Middleware normally takes two parameters (ctx, next), ctx is the context for one request,
71// next is a function that is invoked to execute the downstream middleware. It returns a Promise with a then function for running code after completion.
72
73app.use((ctx, next) => {
74 const start = Date.now();
75 return next().then(() => {
76 const ms = Date.now() - start;
77 console.log(`${ctx.method} ${ctx.url} - ${ms}ms`);
78 });
79});
80```
81
82### Koa v1.x Middleware Signature
83
84The middleware signature changed between v1.x and v2.x. The older signature is deprecated.
85
86**Old signature middleware support will be removed in v3**
87
88Please see the [Migration Guide](docs/migration.md) for more information on upgrading from v1.x and
89using v1.x middleware with v2.x.
90
91## Context, Request and Response
92
93Each middleware receives a Koa `Context` object that encapsulates an incoming
94http message and the corresponding response to that message. `ctx` is often used
95as the parameter name for the context object.
96
97```js
98app.use(async (ctx, next) => { await next(); });
99```
100
101Koa provides a `Request` object as the `request` property of the `Context`.
102Koa's `Request` object provides helpful methods for working with
103http requests which delegate to an [IncomingMessage](https://nodejs.org/api/http.html#http_class_http_incomingmessage)
104from the node `http` module.
105
106Here is an example of checking that a requesting client supports xml.
107
108```js
109app.use(async (ctx, next) => {
110 ctx.assert(ctx.request.accepts('xml'), 406);
111 // equivalent to:
112 // if (!ctx.request.accepts('xml')) ctx.throw(406);
113 await next();
114});
115```
116
117Koa provides a `Response` object as the `response` property of the `Context`.
118Koa's `Response` object provides helpful methods for working with
119http responses which delegate to a [ServerResponse](https://nodejs.org/api/http.html#http_class_http_serverresponse)
120.
121
122Koa's pattern of delegating to Node's request and response objects rather than extending them
123provides a cleaner interface and reduces conflicts between different middleware and with Node
124itself as well as providing better support for stream handling. The `IncomingMessage` can still be
125directly accessed as the `req` property on the `Context` and `ServerResponse` can be directly
126accessed as the `res` property on the `Context`.
127
128Here is an example using Koa's `Response` object to stream a file as the response body.
129
130```js
131app.use(async (ctx, next) => {
132 await next();
133 ctx.response.type = 'xml';
134 ctx.response.body = fs.createReadStream('really_large.xml');
135});
136```
137
138The `Context` object also provides shortcuts for methods on its `request` and `response`. In the prior
139examples, `ctx.type` can be used instead of `ctx.response.type` and `ctx.accepts` can be used
140instead of `ctx.request.accepts`.
141
142For more information on `Request`, `Response` and `Context`, see the [Request API Reference](docs/api/request.md),
143[Response API Reference](docs/api/response.md) and [Context API Reference](docs/api/context.md).
144
145## Koa Application
146
147The object created when executing `new Koa()` is known as the Koa application object.
148
149The application object is Koa's interface with node's http server and handles the registration
150of middleware, dispatching to the middleware from http, default error handling, as well as
151configuration of the context, request and response objects.
152
153Learn more about the application object in the [Application API Reference](docs/api/index.md).
154
155## Documentation
156
157 - [Usage Guide](docs/guide.md)
158 - [Error Handling](docs/error-handling.md)
159 - [Koa for Express Users](docs/koa-vs-express.md)
160 - [FAQ](docs/faq.md)
161 - [API documentation](docs/api/index.md)
162
163## Troubleshooting
164
165Check the [Troubleshooting Guide](docs/troubleshooting.md) or [Debugging Koa](docs/guide.md#debugging-koa) in
166the general Koa guide.
167
168## Running tests
169
170```
171$ npm test
172```
173
174## Reporting vulnerabilities
175
176To report a security vulnerability, please do not open an issue, as this notifies attackers of the vulnerability. Instead, please email [dead_horse](mailto:heyiyu.deadhorse@gmail.com), [jonathanong](mailto:me@jongleberry.com), and [niftylettuce](mailto:niftylettuce@gmail.com) to disclose.
177
178## Authors
179
180See [AUTHORS](AUTHORS).
181
182## Community
183
184 - [Badgeboard](https://koajs.github.io/badgeboard) and list of official modules
185 - [Examples](https://github.com/koajs/examples)
186 - [Middleware](https://github.com/koajs/koa/wiki) list
187 - [Wiki](https://github.com/koajs/koa/wiki)
188 - [Reddit Community](https://www.reddit.com/r/koajs)
189 - [Mailing list](https://groups.google.com/forum/#!forum/koajs)
190 - [中文文档 v1.x](https://github.com/guo-yu/koa-guide)
191 - [中文文档 v2.x](https://github.com/demopark/koa-docs-Zh-CN)
192 - __[#koajs]__ on freenode
193
194## Job Board
195
196Looking for a career upgrade?
197
198<a href="https://astro.netlify.com/automattic"><img src="https://astro.netlify.com/static/automattic.png"></a>
199<a href="https://astro.netlify.com/segment"><img src="https://astro.netlify.com/static/segment.png"></a>
200<a href="https://astro.netlify.com/auth0"><img src="https://astro.netlify.com/static/auth0.png"/></a>
201
202## Backers
203
204Support us with a monthly donation and help us continue our activities.
205
206<a href="https://opencollective.com/koajs/backer/0/website" target="_blank"><img src="https://opencollective.com/koajs/backer/0/avatar.svg"></a>
207<a href="https://opencollective.com/koajs/backer/1/website" target="_blank"><img src="https://opencollective.com/koajs/backer/1/avatar.svg"></a>
208<a href="https://opencollective.com/koajs/backer/2/website" target="_blank"><img src="https://opencollective.com/koajs/backer/2/avatar.svg"></a>
209<a href="https://opencollective.com/koajs/backer/3/website" target="_blank"><img src="https://opencollective.com/koajs/backer/3/avatar.svg"></a>
210<a href="https://opencollective.com/koajs/backer/4/website" target="_blank"><img src="https://opencollective.com/koajs/backer/4/avatar.svg"></a>
211<a href="https://opencollective.com/koajs/backer/5/website" target="_blank"><img src="https://opencollective.com/koajs/backer/5/avatar.svg"></a>
212<a href="https://opencollective.com/koajs/backer/6/website" target="_blank"><img src="https://opencollective.com/koajs/backer/6/avatar.svg"></a>
213<a href="https://opencollective.com/koajs/backer/7/website" target="_blank"><img src="https://opencollective.com/koajs/backer/7/avatar.svg"></a>
214<a href="https://opencollective.com/koajs/backer/8/website" target="_blank"><img src="https://opencollective.com/koajs/backer/8/avatar.svg"></a>
215<a href="https://opencollective.com/koajs/backer/9/website" target="_blank"><img src="https://opencollective.com/koajs/backer/9/avatar.svg"></a>
216<a href="https://opencollective.com/koajs/backer/10/website" target="_blank"><img src="https://opencollective.com/koajs/backer/10/avatar.svg"></a>
217<a href="https://opencollective.com/koajs/backer/11/website" target="_blank"><img src="https://opencollective.com/koajs/backer/11/avatar.svg"></a>
218<a href="https://opencollective.com/koajs/backer/12/website" target="_blank"><img src="https://opencollective.com/koajs/backer/12/avatar.svg"></a>
219<a href="https://opencollective.com/koajs/backer/13/website" target="_blank"><img src="https://opencollective.com/koajs/backer/13/avatar.svg"></a>
220<a href="https://opencollective.com/koajs/backer/14/website" target="_blank"><img src="https://opencollective.com/koajs/backer/14/avatar.svg"></a>
221<a href="https://opencollective.com/koajs/backer/15/website" target="_blank"><img src="https://opencollective.com/koajs/backer/15/avatar.svg"></a>
222<a href="https://opencollective.com/koajs/backer/16/website" target="_blank"><img src="https://opencollective.com/koajs/backer/16/avatar.svg"></a>
223<a href="https://opencollective.com/koajs/backer/17/website" target="_blank"><img src="https://opencollective.com/koajs/backer/17/avatar.svg"></a>
224<a href="https://opencollective.com/koajs/backer/18/website" target="_blank"><img src="https://opencollective.com/koajs/backer/18/avatar.svg"></a>
225<a href="https://opencollective.com/koajs/backer/19/website" target="_blank"><img src="https://opencollective.com/koajs/backer/19/avatar.svg"></a>
226<a href="https://opencollective.com/koajs/backer/20/website" target="_blank"><img src="https://opencollective.com/koajs/backer/20/avatar.svg"></a>
227<a href="https://opencollective.com/koajs/backer/21/website" target="_blank"><img src="https://opencollective.com/koajs/backer/21/avatar.svg"></a>
228<a href="https://opencollective.com/koajs/backer/22/website" target="_blank"><img src="https://opencollective.com/koajs/backer/22/avatar.svg"></a>
229<a href="https://opencollective.com/koajs/backer/23/website" target="_blank"><img src="https://opencollective.com/koajs/backer/23/avatar.svg"></a>
230<a href="https://opencollective.com/koajs/backer/24/website" target="_blank"><img src="https://opencollective.com/koajs/backer/24/avatar.svg"></a>
231<a href="https://opencollective.com/koajs/backer/25/website" target="_blank"><img src="https://opencollective.com/koajs/backer/25/avatar.svg"></a>
232<a href="https://opencollective.com/koajs/backer/26/website" target="_blank"><img src="https://opencollective.com/koajs/backer/26/avatar.svg"></a>
233<a href="https://opencollective.com/koajs/backer/27/website" target="_blank"><img src="https://opencollective.com/koajs/backer/27/avatar.svg"></a>
234<a href="https://opencollective.com/koajs/backer/28/website" target="_blank"><img src="https://opencollective.com/koajs/backer/28/avatar.svg"></a>
235<a href="https://opencollective.com/koajs/backer/29/website" target="_blank"><img src="https://opencollective.com/koajs/backer/29/avatar.svg"></a>
236
237
238## Sponsors
239
240Become a sponsor and get your logo on our README on Github with a link to your site.
241
242<a href="https://opencollective.com/koajs/sponsor/0/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/0/avatar.svg"></a>
243<a href="https://opencollective.com/koajs/sponsor/1/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/1/avatar.svg"></a>
244<a href="https://opencollective.com/koajs/sponsor/2/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/2/avatar.svg"></a>
245<a href="https://opencollective.com/koajs/sponsor/3/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/3/avatar.svg"></a>
246<a href="https://opencollective.com/koajs/sponsor/4/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/4/avatar.svg"></a>
247<a href="https://opencollective.com/koajs/sponsor/5/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/5/avatar.svg"></a>
248<a href="https://opencollective.com/koajs/sponsor/6/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/6/avatar.svg"></a>
249<a href="https://opencollective.com/koajs/sponsor/7/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/7/avatar.svg"></a>
250<a href="https://opencollective.com/koajs/sponsor/8/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/8/avatar.svg"></a>
251<a href="https://opencollective.com/koajs/sponsor/9/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/9/avatar.svg"></a>
252<a href="https://opencollective.com/koajs/sponsor/10/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/10/avatar.svg"></a>
253<a href="https://opencollective.com/koajs/sponsor/11/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/11/avatar.svg"></a>
254<a href="https://opencollective.com/koajs/sponsor/12/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/12/avatar.svg"></a>
255<a href="https://opencollective.com/koajs/sponsor/13/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/13/avatar.svg"></a>
256<a href="https://opencollective.com/koajs/sponsor/14/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/14/avatar.svg"></a>
257<a href="https://opencollective.com/koajs/sponsor/15/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/15/avatar.svg"></a>
258<a href="https://opencollective.com/koajs/sponsor/16/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/16/avatar.svg"></a>
259<a href="https://opencollective.com/koajs/sponsor/17/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/17/avatar.svg"></a>
260<a href="https://opencollective.com/koajs/sponsor/18/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/18/avatar.svg"></a>
261<a href="https://opencollective.com/koajs/sponsor/19/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/19/avatar.svg"></a>
262<a href="https://opencollective.com/koajs/sponsor/20/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/20/avatar.svg"></a>
263<a href="https://opencollective.com/koajs/sponsor/21/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/21/avatar.svg"></a>
264<a href="https://opencollective.com/koajs/sponsor/22/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/22/avatar.svg"></a>
265<a href="https://opencollective.com/koajs/sponsor/23/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/23/avatar.svg"></a>
266<a href="https://opencollective.com/koajs/sponsor/24/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/24/avatar.svg"></a>
267<a href="https://opencollective.com/koajs/sponsor/25/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/25/avatar.svg"></a>
268<a href="https://opencollective.com/koajs/sponsor/26/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/26/avatar.svg"></a>
269<a href="https://opencollective.com/koajs/sponsor/27/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/27/avatar.svg"></a>
270<a href="https://opencollective.com/koajs/sponsor/28/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/28/avatar.svg"></a>
271<a href="https://opencollective.com/koajs/sponsor/29/website" target="_blank"><img src="https://opencollective.com/koajs/sponsor/29/avatar.svg"></a>
272
273# License
274
275 [MIT](https://github.com/koajs/koa/blob/master/LICENSE)
276
277[npm-image]: https://img.shields.io/npm/v/koa.svg?style=flat-square
278[npm-url]: https://www.npmjs.com/package/koa
279[travis-image]: https://img.shields.io/travis/koajs/koa/master.svg?style=flat-square
280[travis-url]: https://travis-ci.org/koajs/koa
281[coveralls-image]: https://img.shields.io/codecov/c/github/koajs/koa.svg?style=flat-square
282[coveralls-url]: https://codecov.io/github/koajs/koa?branch=master
283[backers-image]: https://opencollective.com/koajs/backers/badge.svg?style=flat-square
284[sponsors-image]: https://opencollective.com/koajs/sponsors/badge.svg?style=flat-square
285[gitter-image]: https://img.shields.io/gitter/room/koajs/koa.svg?style=flat-square
286[gitter-url]: https://gitter.im/koajs/koa?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
287[#koajs]: https://webchat.freenode.net/?channels=#koajs
288[pr-welcoming-image]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
289[pr-welcoming-url]: https://github.com/koajs/koa/pull/new