Skip to content

1.1.0

Choose a tag to compare

@matthewp matthewp released this 26 Jul 10:49
· 28 commits to master since this release

This is a minor release of done-ssr-middleware that works with incremental rendering. To use incremental rendering, set the 'strategy' option:

var ssr = require("done-ssr-middleware");
var app = require("express")();

app.use(ssr({}, {
  strategy: "incremental"
}));