From bbbbfcc37a9a2423d541a13f85c6a9481bba177c Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Sat, 17 Aug 2013 00:33:28 -0700 Subject: [PATCH] docs --- Readme.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Readme.md b/Readme.md index 173db71..4421ff9 100644 --- a/Readme.md +++ b/Readme.md @@ -4,13 +4,10 @@ Expressive middleware for node.js using generators via [co](https://github.com/visionmedia/co) to make writing web applications and REST APIs more enjoyable to write. - Koa provides a useful set of methods that make day to day web application and API design much - faster, and less error-prone than "raw" nodejs. Many of these utilities were extracted from [Express](https://github.com/visionmedia/express), - however moving them to this layer allows middleware developers to avoid boilerplate and refrain from re-implementing - many of these features, sometimes incorrectly or incomplete. + Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~400 SLOC codebase. This + includes things like content-negotiation, normalization of node inconsistencies, redirection, and a few others. - Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~400 SLOC codebase. No middleware - are bundled with koa. If you prefer to only define a single dependency for common middleware, much like Connect, you may use + No middleware are bundled with koa. If you prefer to only define a single dependency for common middleware, much like Connect, you may use [koa-common](https://github.com/koajs/common). ## Installation