From 9bf6bf1c0771430c12b75ba05f5a5e1575503e85 Mon Sep 17 00:00:00 2001 From: Jonathan Ong Date: Sun, 30 Aug 2015 22:07:54 -0700 Subject: [PATCH] improve verbage based on comments --- Readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 88f1e0d..a816c03 100644 --- a/Readme.md +++ b/Readme.md @@ -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