Adapter for using Express middleware in Koa applications. Version 1.0.0 allows wrapping Express-compatible middleware functions (req, res) to be used within Koa's middleware chain. Supports many Express request and response APIs but not all. Limited release; no recent updates. Differentiators: enables Express middleware reuse during migration from Express to Koa.
npm install koa-express-adapterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates wrapping Express middleware to use in Koa, including basic usage and handling next().
Omit next parameter from the wrapped function if you don't call next()
Check supported properties in the README, or test the middleware.
Migrate to Koa native middleware or use a more maintained adapter like koa-connect.
Use adapter's supported response methods; check the README for supported properties.
Include next parameter only if you call it; adapter requires exact signature.
Ensure wrapped function has exactly (req, res, next) or (req, res) without optional params.
No dependency data recorded yet.