From 20b2c9ff4a5f9a8d5c4e8cd042c76e25b4f93a00 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Tue, 20 Aug 2013 22:07:00 -0700 Subject: [PATCH] add FAQ. Closes #12 --- Readme.md | 1 + docs/faq.md | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 docs/faq.md diff --git a/Readme.md b/Readme.md index 9971b9f..8375339 100644 --- a/Readme.md +++ b/Readme.md @@ -31,6 +31,7 @@ alias node='node --harmony-generators' - [G+ Community](https://plus.google.com/communities/101845768320796750641) - [Mailing list](https://groups.google.com/forum/#!forum/koajs) - __#koajs__ on freenode + - [FAQ](docs/faq.md) ## Example diff --git a/docs/faq.md b/docs/faq.md new file mode 100644 index 0000000..fd53802 --- /dev/null +++ b/docs/faq.md @@ -0,0 +1,12 @@ + +# Frequently Asked Questions + +## Does Koa replace Express? + + No, it's more like Connect. + +## Does Koa replace Connect? + + No, just a different take on similar functionality + now that generators allow us to write code with less + callbacks. Connect is equally capable, and some may still prefer it.