Koa compatibility?
Closed this issue · 1 comments
Akkuma commented
I'm running an ultra simple server with koa and I'm seeing this
TypeError: x.ee.removeListener is not a function
at cleanup (/Users/omni/Documents/git/drive-proxy/node_modules/ee-first/index.js:62:12)
at callback (/Users/omni/Documents/git/drive-proxy/node_modules/ee-first/index.js:54:5)
at onevent (/Users/omni/Documents/git/drive-proxy/node_modules/ee-first/index.js:93:5)
at respond (/Users/omni/Documents/git/drive-proxy/node_modules/koa/lib/application.js:229:43)
at handleResponse (/Users/omni/Documents/git/drive-proxy/node_modules/koa/lib/application.js:134:36)
at <anonymous>
fish: 'node index' terminated by signal SIGSEGV (Address boundary error)
Here is what I'm running
const mitol = require('mitol');
const Koa = require('koa');
const app = new Koa();
// response
app.use(ctx => {
ctx.status = 200;
ctx.body = 'Hello';
});
mitol.createServer(app.callback()).listen(3000);
This works without fail when I'm using http
as normal