Skip to content

donejs/done-ssr-middleware

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Oct 1, 2020
9efe9db · Oct 1, 2020
Jun 19, 2017
Jun 19, 2017
Nov 13, 2018
Jan 12, 2017
Dec 12, 2017
Mar 8, 2016
Feb 22, 2018
Jun 18, 2019
Jul 21, 2017
Mar 31, 2017
Jun 16, 2017
Oct 1, 2020

Repository files navigation

Build Status npm version

done-ssr-middleware

Greenkeeper badge

Simple Express/Connect middleware for server-side rendering your DoneJS application.

Install

npm install done-ssr-middleware

Usage

Use the middleware to add server-side rendering to an existing Express server:

var ssr = require('done-ssr-middleware');

app.use('/', ssr({
  config: __dirname + '/public/package.json!npm'
}));

The middleware includes a live-reload utility that can automatically refresh the cache for server-rendered responses. Use the liveReload option to enable this feature:

app.use('/', ssr({
  config: __dirname + '/public/package.json!npm',
  liveReload: true
}));

Note: Make sure the ssr middleware is the last middleware in the chain but before the error handler. Errors when rendering the application will be passed to your Express error handler. Error status codes (e.g. 404s or others) will be rendered with the application.

Options

This module shares the same system and options arguments as done-ssr.

License

MIT