Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.02 KB

koa-prerender Build Status

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

This koa middleware intercepts requests to your Node.js website from crawlers, and then makes a call to the (external) Prerender service to get the static HTML instead of the javascript for that page.

Setup

Prerequisites

Install prerender on a server of your choice.

Usage

var prerender = require('koa-prerender');

// Options
var options = {
  prerender: PRERENDER_SERVER_URL,   // optional, default:'http://service.prerender.io/'
  protocol: 'http',                  // optional, default: ctx.protocol
  host: 'scidock.com',               // optional, default: ctx.host,
  prerenderToken: ''                 // optional or process.env.PRERENDER_TOKEN
};

// Use as middleware
app.use(prerender(options));

License

ISC