improve verbage based on comments

master
Jonathan Ong 2015-08-30 22:07:54 -07:00
parent 30c8723705
commit 9bf6bf1c07
1 changed files with 2 additions and 3 deletions

View File

@ -5,13 +5,12 @@
[![build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
Expressive HTTP middleware for node.js, using generators via [co](https://github.com/visionmedia/co),
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.
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.
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.
No middleware is bundled with koa.
Koa is not bundled with any middleware.
## Installation