This package has been deprecated

Author message:

Prerenderer (starting from version 0.6.0) has moved to the npm organization @prerenderer. Please install @prerenderer/prerenderer instead!

prerenderer

0.5.0 • Public • Published

Prerenderer

Fast, flexible, framework-agnostic prerendering for sites and SPAs.


npm version npm downloads Dependency Status js-standard-style license


NPM

About prerenderer

Note: This package is unstable and still under active development. Use at your own risk.

The goal of this package is to provide a simple, framework-agnostic prerendering solution that is easily extensible and usable for any site or single-page-app.

If you're looking for the webpack plugin that wraps this package, check out prerenderer-webpack-plugin.

Now, if you're not familiar with the concept of prerendering, you might predictably ask...

What is Prerendering?

Recently, SSR (Server Side Rendering) has taken the JavaScript front-end world by storm. The fact that you can now render your sites and apps on the server before sending them to your clients is an absolutely revolutionary idea (and totally not what everyone was doing before JS client-side apps got popular in the first place...)

However, the same criticisms that were valid for PHP, ASP, JSP, (and such) sites are valid for server-side rendering today. It's slow, breaks fairly easily, and is difficult to implement properly.

Thing is, despite what everyone might be telling you, you probably don't need SSR. You can get almost all the advantages of it (without the disadvantages) by using prerendering. Prerendering is basically firing up a headless browser, loading your app's routes, and saving the results to a static HTML file. You can then serve it with whatever static-file-serving solution you were using previously. It just works with HTML5 navigation and the likes. No need to change your code or add server-side rendering workarounds.

In the interest of transparency, there are some use-cases where prerendering might not be a great idea.

  • Tons of routes - If your site has hundreds or thousands of routes, prerendering will be really slow. Sure you only have to do it once per update, but it could take ages. Most people don't end up with thousands of static routes, but just in-case...
  • Dynamic Content - If your render routes that have content that's specific to the user viewing it or other dynamic sources, you should make sure you have placeholder components that can display until the dynamic content loads on the client-side. Otherwise it might be a tad weird.

Example prerenderer Usage

(It's much simpler if you use prerenderer with webpack or another build system.)

Input

app/
├── index.html
└── index.js // Whatever JS controls the SPA, loaded by index.html

Output

app/
├── about
│   └── index.html // Static rendered /about route.
├── index.html // Static rendered / route.
├── index.js // Whatever JS controls the SPA, loaded by index.html
└── some
    └── deep
        └── nested
            └── route
                └── index.html // Static rendered nested route.
const fs = require('fs')
const path = require('path')
const mkdirp = require('mkdirp')
const Prerenderer = require('prerenderer')
const BrowserRenderer = Prerenderer.BrowserRenderer
const ChromeRenderer = Prerenderer.ChromeRenderer
const JSDOMRenderer = Prerenderer.JSDOMRenderer
 
const prerenderer = new Prerenderer({
  // Required - The path to the app to prerender. Should have an index.html and any other needed assets.
  staticDir: path.join(__dirname, 'app'),
 
  // Optional - This is the default.
  // or new ChromeRenderer({ command: 'chrome-start-command' })
  // or new JSDOMRenderer()
  renderer: new BrowserRenderer()
})
 
// Initialize is separate from the constructor for flexibility of integration with build systems.
prerenderer.initialize()
.then(() => {
  // List of routes to render.
  return prerenderer.renderRoutes([ '/', '/about', '/some/deep/nested/route' ])
})
.then(renderedRoutes => {
  // renderedRoutes is an array of objects in the format:
  // {
  //   route: String (The route rendered)
  //   html: String (The resulting HTML)
  // }
  renderedRoutes.forEach(renderedRoute => {
    try {
      // A smarter implementation would be required, but this does okay for an example.
      // Don't copy this directly!!!
      const outputDir = path.join(__dirname, 'app', renderedRoute.route
      const outputFile = `${outputDir}/index.html`
 
      mkdirp.sync(outputDir)
      fs.writeFileSync(outputFile, processedRoute.html.trim())
    } catch (e) {
      // Handle errors.
    }
  })
 
  // Shut down the file server and renderer.
  prerenderer.destroy()
})
.catch(err => {
  // Shut down the server and renderer.
  prerenderer.destroy()
  // Handle errors.
})

Available Renderers

  • prerenderer.BrowserRenderer (builtin, default) - Opens the system default browser to render the page. Adds and removes a script from the page in the process which could potentially cause problems, though highly unlikely. Works best with Chrome and Chrome variants. This should be your first choice.
  • prerenderer.JSDOMRenderer (builtin) - Uses jsdom Extremely fast, but unreliable and cannot handle advanced usages. May not work with all front-end frameworks and apps.
  • prerenderer.ChromeRenderer (builtin) - Uses Google Chrome in headless mode over RDP. Not blazing fast, but produces excellent results and avoids page mangling. Requires Chrome 54+ on macOS and Linux, and Chrome 60+ on Windows

Which renderer should I use?

Use BrowserRenderer if: You're pre-rendering maybe ten or twenty routes tops, and don't mind a bunch of tabs opening in your browser and closing again in a split second. (This can be avoided if you use Chrome with the --headless flag in the opn options.)

Also, BrowserRenderer cannot close any opened Firefox tabs (without you first setting dom.allow_scripts_to_close_windows to true in about:config.) So yeah, sorry about that.

Use ChromeRenderer if: You're prerendering up to a couple hundred pages (bye-bye RAM!), or if BrowserRenderer's script injection is interfering with your app.

Use JSDOMRenderer if: You need to prerender thousands upon thousands of pages, but quality isn't all that important, and you're willing to work around issues for more advanced cases. (Programmatic SVG support, etc.)

Documentation

Prerenderer Options

Option Type Required? Default Description
staticDir String Yes None The root path to serve your app from.
indexPath String No staticDir/index.html The index file to fall back on for SPAs.
removeWhitespace Boolean No Strip whitespace in-between tags in the resulting HTML. May cause issues in your app, use with caution.
server Object No None App server configuration options (See below)
renderer Renderer Instance or Configuration Object No new BrowserRenderer() The renderer you'd like to use to prerender the app. It's recommended that you specify this, but if not it will default to BrowserRenderer.

Server Options

Option Type Required? Default Description
port Integer No First free port after 8000 The port for the app server to run on.

Prerenderer Methods

  • constructor(options: Object) - Creates a Prerenderer instance and sets up the renderer and server objects.
  • initialize(): Promise<> - Starts the static file server and renderer instance (where appropriate).
  • getOptions(): Object - Returns the options used to configure prerenderer
  • getServer(): (Internal Server Class) - Gets the instanced server class. INTERNAL
  • getRenderer(): (Instanced Renderer Class) - Gets the instanced renderer class. INTERNAL
  • modifyServer(Server: Server Instance, stage: string) - DANGEROUS Called by the server to allow renderers to modify the server at various stages. Avoid if at all possible. INTERNAL
  • destroy() - Destroys the static file server and renderer, freeing the resources.
  • renderRoutes(routes: Array<String>): Promise<Array<RenderedRoute>> - Renders set of routes. Returns a promise resolving to an array of rendered routes in the form of:
[
  {
    route: '/route/path', // The route path.
    html: '<!DOCTYPE html><html>...</html>' // The prerendered HTML for the route
  },
  ...
]

BrowserRenderer Options

Option Type Required? Default Description
maxConcurrentRoutes Number No 0 (No limit) The number of routes allowed to be rendered at the same time. Useful for breaking down massive batches of routes into smaller chunks.
inject Object No None An object to inject into the global scope of the rendered page before it finishes loading. Must be JSON.stringifiy-able. The property injected to is window['__PRERENDER_INJECTED'] by default.
injectProperty String No '__PRERENDER_INJECTED' The property to mount inject to during rendering.
renderAfterDocumentEvent String No None Wait to render until the specified event is fired on the document. (You can fire an event like so: document.dispatchEvent(new Event('custom-render-trigger'))
renderAfterElementExists String (Selector) No None Wait to render until the specified element is detected using document.querySelector
renderAfterTime Integer (Milliseconds) No None Wait to render until a certain amount of time has passed.
injectedScriptId String No '__prerenderer-browser-injected-326eaade-583d-407b-bfcc-6f56c5507a55' The element ID to use for the internal script injected by BrowserRenderer into your app.
opn Object no {} Configuration for opn (The package that opens the browser.) See more about that below.

Opn configurations:

You can configure opn with the opn option to make BrowserRenderer less intrusive. Unfortunately, we can't do it for you because of cross-platform differences. Here are some example setups:

Chrome Headless Mode (Chrome 60+) Opens chrome in the background without creating a window and renders your pages. Similar to ChromeRenderer.

new BrowserRenderer({
  opn: {
    // Mac: google-chrome, Windows: chrome, Linux: varies, probably google-chrome or google-chrome stable. chromium works too.
    app: ['google-chrome', '--headless']
  }
})

Firefox Private Browsing Mode Opens Firefox with a separate private browsing window.

Note: BrowserRenderer cannot close any opened Firefox tabs (without you first setting dom.allow_scripts_to_close_windows to true in about:config.)

new BrowserRenderer({
  opn: {
    app: ['firefox', '-private']
  }
})

BrowserRenderer Methods

These are handled by prerenderer. The only thing you need to worry about is the constructor unless you're planning on writing your own renderer.

  • constructor(options: Object) - Loads and validates options.
  • initialize(): Promise<Process Handle> - Does nothing
  • modifyServer(Prerenderer: Prerenderer, ServerWrapper: Internal Server, stage: String): void - Patches the static file server to inject scripts into HTML pages and get render results back. INTERNAL
  • destroy() - Does nothing
  • renderRoutes(routes: Array<String>, serverPort: Integer (fileserver port), rootOptions: Object (Prerenderer global options))): Promise<Array<RenderedRoute>> - Renders set of routes. Returns a promise resolving to an array of rendered routes in the form of:
[
  {
    route: '/route/path', // The route path.
    html: '<!DOCTYPE html><html>...</html>' // The prerendered HTML for the route
  },
  ...
]

JSDOMRenderer Options

Option Type Required? Default Description
maxConcurrentRoutes Number No 0 (No limit) The number of routes allowed to be rendered at the same time. Useful for breaking down massive batches of routes into smaller chunks.
inject Object No None An object to inject into the global scope of the rendered page before it finishes loading. Must be JSON.stringifiy-able. The property injected to is window['__PRERENDER_INJECTED'] by default.
injectProperty String No '__PRERENDER_INJECTED' The property to mount inject to during rendering.
renderAfterDocumentEvent String No None Wait to render until the specified event is fired on the document. (You can fire an event like so: document.dispatchEvent(new Event('custom-render-trigger'))
renderAfterElementExists String (Selector) No None Wait to render until the specified element is detected using document.querySelector
renderAfterTime Integer (Milliseconds) No None Wait to render until a certain amount of time has passed.

JSDOMRenderer Methods

These are handled by prerenderer. The only thing you need to worry about is the constructor unless you're planning on writing your own renderer.

  • constructor(options: Object) - Loads and validates options.
  • initialize(): Promise<Process Handle> - Does nothing
  • destroy() - Does nothing
  • renderRoutes(routes: Array<String>, serverPort: Integer (fileserver port), rootOptions: Object (Prerenderer global options))): Promise<Array<RenderedRoute>> - Renders set of routes. Returns a promise resolving to an array of rendered routes in the form of:
[
  {
    route: '/route/path', // The route path.
    html: '<!DOCTYPE html><html>...</html>' // The prerendered HTML for the route
  },
  ...
]

ChromeRenderer Options

Option Type Required? Default Description
maxConcurrentRoutes Number No 0 (No limit) The number of routes allowed to be rendered at the same time. Useful for breaking down massive batches of routes into smaller chunks.
inject Object No None An object to inject into the global scope of the rendered page before it finishes loading. Must be JSON.stringifiy-able. The property injected to is window['__PRERENDER_INJECTED'] by default.
injectProperty String No '__PRERENDER_INJECTED' The property to mount inject to during rendering.
renderAfterDocumentEvent String No None Wait to render until the specified event is fired on the document. (You can fire an event like so: document.dispatchEvent(new Event('custom-render-trigger'))
renderAfterElementExists String (Selector) No None Wait to render until the specified element is detected using document.querySelector
renderAfterTime Integer (Milliseconds) No None Wait to render until a certain amount of time has passed.
maxLaunchRetries Integer No 5 Max amount of times to try and start the render program before erroring out.
port Integer No Auto-detect available port The port to run Chrome's RDP on.
command String No (Recommended) Auto-detect The command to use to start Chrome or Chromium. Auto-detection is unreliable, so I'd recommend setting it.
arguments Array:String No None Additional arguments to pass to Chrome.

ChromeRenderer Methods

These are handled by prerenderer. The only thing you need to worry about is the constructor unless you're planning on writing your own renderer.

  • constructor(options: Object) - Loads and validates options.
  • initialize(): Promise<Process Handle> - Starts Chrome in headless mode with an RDP session.
  • destroy() - Kills the Chrome process.
  • renderRoutes(routes: Array<String>, serverPort: Integer (fileserver port), rootOptions: Object (Prerenderer global options))): Promise<Array<RenderedRoute>> - Renders set of routes. Returns a promise resolving to an array of rendered routes in the form of:
[
  {
    route: '/route/path', // The route path.
    html: '<!DOCTYPE html><html>...</html>' // The prerendered HTML for the route
  },
  ...
]

Caveats

  • For obvious reasons, prerenderer only works for SPAs that route using the HTML5 history API. index.html#/hash/route URLs will unfortunately not work.
  • Whatever client-side rendering library you're using should be able to at least replace any server-rendered content or diff with it.
    • For Vue.js 1 use replace: false on root components.
    • For Vue.js 2 Ensure your root component has the same id as the prerendered element it's replacing. Otherwise you'll end up with duplicated content.

License (MIT)

Copyright (c) 2017 Joshua Michael Bemenderfer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Credits

Maintainers


Joshua Bemenderfer

Package Sidebar

Install

npm i prerenderer

Weekly Downloads

2

Version

0.5.0

License

MIT

Last publish

Collaborators

  • tribex