mfulop

Results 2 comments of mfulop

So according to [this comment](https://github.com/expressjs/express/issues/4950#issuecomment-1186575620), something like this should work: ``` import { IncomingMessage } from 'unenv/runtime/node/http/_request' import { ServerResponse } from 'unenv/runtime/node/http/_response' const app = express() Object.setPrototypeOf(Object.getPrototypeOf(app.request), IncomingMessage.prototype) Object.setPrototypeOf(Object.getPrototypeOf(app.response),...