Skip to content

1.1.0

Compare
Choose a tag to compare
@matthewp matthewp released this 26 Jul 10:44
· 371 commits to master since this release

This is a minor release adding the new incremental rendering feature.

To learn more about incremental rendering check out this blog. To use the new feature, set the strategy option:

var ssr = require("done-ssr");

var render = ssr({}, {
  strategy: "incremental"
});

require("http").createServer(function(req, res){
  render(req).pipe(res);
}).listen(8080);