improve verbage based on comments
This commit is contained in:
parent
30c8723705
commit
9bf6bf1c07
1 changed files with 2 additions and 3 deletions
|
@ -5,13 +5,12 @@
|
||||||
[![build status][travis-image]][travis-url]
|
[![build status][travis-image]][travis-url]
|
||||||
[![Test coverage][coveralls-image]][coveralls-url]
|
[![Test coverage][coveralls-image]][coveralls-url]
|
||||||
|
|
||||||
Expressive HTTP middleware for node.js, using generators via [co](https://github.com/visionmedia/co),
|
Expressive HTTP middleware 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. Koa's use of generators also greatly increases the readability and robustness of your application.
|
||||||
to make web applications and APIs more enjoyable to write. Koa's middleware flows in a stack-like manner, allowing you to perform actions downstream, then filter and manipulate the response upstream. Koa's use of generators also greatly increases the readability and robustness of your application.
|
|
||||||
|
|
||||||
Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~550 SLOC codebase. This
|
Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~550 SLOC codebase. This
|
||||||
includes things like content negotiation, normalization of node inconsistencies, redirection, and a few others.
|
includes things like content negotiation, normalization of node inconsistencies, redirection, and a few others.
|
||||||
|
|
||||||
No middleware is bundled with koa.
|
Koa is not bundled with any middleware.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue