0.1.8 • Published 5 years ago

@dfrechette/rendertron-middleware v0.1.8

Weekly downloads
8
License
Apache-2.0
Repository
-
Last release
5 years ago

Build status NPM version

rendertron-middleware

An Express middleware for Rendertron.

Rendertron is a server which runs headless Chrome and renders web pages on the fly, which can be set up to serve pages to search engines, social networks and link rendering bots.

This middleware checks the User-Agent header of incoming requests, and if it matches one of a configurable set of bots, proxies that request through Rendertron.

Usage

$ npm install --save express @dfrechette/rendertron-middleware
const functions = require('firebase-functions');
const express = require('express');
const app = express();
const rendertron = require('rendertron-middleware');

const BOTS = rendertron.botUserAgents.concat('googlebot');
const BOT_UA_PATTERN = new RegExp(BOTS.join('|'), 'i');

app.use(rendertron.makeMiddleware({
  proxyUrl: 'http://my-rendertron-instance/render',
  userAgentPattern: BOT_UA_PATTERN,
  host: 'my-fancy-domain.com', // optional
  protocol: 'https' // optional
}));

...

Configuration

The makeMiddleware function takes a configuration object with the following properties:

PropertyDefaultDescription
proxyUrlRequiredBase URL of your running Rendertron proxy service.
hostreq.get('host')Specify an external domain to use for the URL sent to the rendertron service. Ex. Firebase hosting that rewrite queries to a cloud function, the req.get('host') would be the cloud function domain and not the website.
protocolreq.protocolForce a specific protocol to use when building the URL to be pass to rendertron
userAgentPatternA set of known bots that benefit from pre-rendering. Full list.RegExp for matching requests by User-Agent header.
excludeUrlPatternA set of known static file extensions. Full list.RegExp for excluding requests by the path component of the URL.
injectShadyDomfalseForce the web components polyfills to be loaded. Read more.
timeout11000Millisecond timeout for the proxy request to Rendertron. If exceeded, the standard response is served (i.e. next() is called). This is not the timeout for the Rendertron server itself. See also the Rendertron timeout.
0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago