Writing a streaming response from a streaming query in Koa with Mongoose Writing a streaming response from a streaming query in Koa with Mongoose mongoose mongoose

Writing a streaming response from a streaming query in Koa with Mongoose


koa-write may help.

but you might not need that. Koa allows you to do:

this.body = stream;

In your case you can create a transform stream since the mongoose stream isn't exactly what you want to output.