Skip to content

Releases: donejs/done-serve

3.3.0

07 Jan 13:06
Compare
Choose a tag to compare
v3.3.0

3.3.0

3.2.0

04 Jan 19:24
Compare
Choose a tag to compare

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

13 Dec 19:21
Compare
Choose a tag to compare

This is a minor release, making it possible to inject middleware into the server.

const server = require('done-serve');

server(3030, {
  configure(layers) {
    layers.push(function(req, res, next) {
      if(req.url === ...) {
        doStuff(req, res, next);
      }
    });
  }
});

3.0.0

15 Nov 13:23
Compare
Choose a tag to compare

This is the major release for DoneJS 3.0. Check out the done-ssr release notes for more on the changes.

2.3.0

28 Jun 12:47
Compare
Choose a tag to compare

done-serve now shows a directory listing when in --static mode!

screen shot 2018-06-28 at 8 45 13 am

2.2.0

19 Mar 13:17
Compare
Choose a tag to compare

This is a minor release, adding support for live-reload on error pages.

2.1.0

13 Mar 13:46
Compare
Choose a tag to compare

This is a minor release bring in improved error messaging.

Instead of forwarding the raw error message (which can some times be somewhat difficult to read, we now format them as nice HTML like so:

screen shot 2018-03-13 at 9 45 52 am

2.0.0

22 Feb 14:57
Compare
Choose a tag to compare

This is a major release, coinciding with the DoneJS 2.0 release.

1.5.0

06 Nov 14:33
Compare
Choose a tag to compare

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

26 Jul 10:51
Compare
Choose a tag to compare

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