Releases: donejs/done-serve
Releases · donejs/done-serve
3.3.0
3.2.0
This is a minor release, making it possible to provide an alternative middleware for SSR handling:
const server = serve(5050, {
path: __dirname,
proxy: 'http://localhost:6060',
ssr: function(steal, options) {
Do whatever you want here!
return function(req, res) {
};
}
});
3.1.0
3.0.0
This is the major release for DoneJS 3.0. Check out the done-ssr release notes for more on the changes.
2.3.0
2.2.0
2.1.0
2.0.0
1.5.0
This is a minor release, upgrading to the latest version of done-ssr, 1.3.0. See the release notes there for more information.
This upgrade does not affect done-serve users, or bring in new features.
1.4.0
This is a minor release that adds the new incremental rendering strategy to done-serve. To use incremental rendering pass the SSL key and certificate, as well as the --strategy
option:
done-serve --key path/to/key.pem --cert path/to/cert.pem --strategy incremental