From 0590430d7b59c4e7ffdc6df49a6ee1314b0d71ac Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Wed, 6 Jul 2016 08:47:25 -0700 Subject: [PATCH] Update Readme.md --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 6d19a2c..7f3c12a 100644 --- a/Readme.md +++ b/Readme.md @@ -7,12 +7,12 @@ [![OpenCollective Backers][backers-image]](#backers) [![OpenCollective Sponsors][sponsors-image]](#sponsors) - Expressive HTTP middleware for node.js to make web applications and APIs more enjoyable to write. Koa requests flow through middleware 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, light-weight HTTP framework for node.js to make web applications and APIs more enjoyable to write. Koa requests flow through middleware 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. - Koa is not bundled with any middleware. + Koa is not bundled with any middleware, but there is a [large collection](https://github.com/koajs/koa/wiki) of community middleware to choose from. ## Installation