2013-08-21 05:07:00 +00:00
|
|
|
|
|
|
|
# Frequently Asked Questions
|
|
|
|
|
|
|
|
## Does Koa replace Express?
|
|
|
|
|
2013-12-19 06:54:56 +00:00
|
|
|
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.
|
2013-08-21 05:07:00 +00:00
|
|
|
|
|
|
|
## Does Koa replace Connect?
|
|
|
|
|
|
|
|
No, just a different take on similar functionality
|
|
|
|
now that generators allow us to write code with less
|
2013-12-19 06:54:56 +00:00
|
|
|
callbacks. Connect is equally capable, and some may still prefer it,
|
|
|
|
it's up to what you prefer.
|