From b95dfcb8ed8e43059e715f074408cbfb4a75ee2a Mon Sep 17 00:00:00 2001 From: jongleberry Date: Fri, 30 Aug 2024 21:56:54 -0700 Subject: [PATCH] docs: add note about features in koa-vs-express closes #1654 --- docs/koa-vs-express.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/koa-vs-express.md b/docs/koa-vs-express.md index 09160f0..9c8d240 100644 --- a/docs/koa-vs-express.md +++ b/docs/koa-vs-express.md @@ -17,6 +17,7 @@ | Sending Files | | ✓ | | | JSONP | | ✓ | | +> NOTE: this doesn't mean Koa is incapable of supporting these features, these features are simply supported by other modules (middleware, plugins, etc.) versus the framework itself. Thus, if you'd like to be closer to Node.js and traditional Node.js-style coding, you probably want to stick to Connect/Express or similar frameworks. If you want to get rid of callbacks, use Koa.