koa-prerender icon indicating copy to clipboard operation
koa-prerender copied to clipboard

KOA middleware for prerendering javascript-rendered pages on the fly for SEO

Results 6 koa-prerender issues
Sort by recently updated
recently updated
newest added

To match the list in the official prerender repository

Line 104: .parse(options.url, true).query.hasOwnProperty('_escaped_fragment_')) { if there's no query this .parse(options.url, true).query will evaluate to undefined and .hasOwnProperty will crash taking down the whole pipeline.

To let thing work pls update that

Would it be possible to support standalone prerendering (like `prerender-node` does with express) in current `koa-prerender`?

How would you go about caching while using this? The express middleware supports both plugins and has before and after calls to do any caching (or whatever else) necessary. I...

Useful when same KOA website serves regular requests and also handles the pre-rendering interception and return right after the content is obtained from PhantomJS. Example: your Angular app hits your...