koajs / examples

Example Koa apps
4.52k stars 744 forks source link

Koa2 examples of streaming? #94

Open kristianmandrup opened 8 years ago

kristianmandrup commented 8 years ago

I'm mostly interested in the stream-view and SSE examples. Thanks.

https://github.com/koajs/examples/blob/master/stream-view/view.js

bananaappletw commented 8 years ago

@hemanth There is no koa2 example in this repo. This should create another koa2 branch like koa.js? Or just separate into two repos? Then try to migrate original koa.js example to koa2?

kristianmandrup commented 8 years ago

I managed to make a Koa2 stream renderer for use with Vue2 SSR.

koa-vue-builder architecture

stream writer

ctx.body = stream.pipe(htmlWriter);