1.1.0
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);