From 9812aff8d2ad39c6e4f0fee01772923b7e53bd6b Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Wed, 18 Dec 2013 23:08:14 -0800 Subject: [PATCH] docs: more faq --- docs/faq.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index 9c643b5..51837e8 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -6,7 +6,10 @@ It's more like Connect, but a lot of the Express goodies were moved to the middleware level in Koa to help form a stronger foundation. This makes middleware more enjoyable - and less error-prone to write. + and less error-prone to write. Typically many middleware would + re-implement similar features, or even worse incorrectly implement them, + when features like signed cookie secrets among others are typically application-specific, + not middleware specific. ## Does Koa replace Connect?