Releases: donejs/done-serve
Releases · donejs/done-serve
3.3.0
07 Jan 13:06
Compare
Sorry, something went wrong.
No results found
3.2.0
04 Jan 19:24
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
2.3.0
28 Jun 12:47
Compare
Sorry, something went wrong.
No results found
done-serve now shows a directory listing when in --static mode!
2.2.0
19 Mar 13:17
Compare
Sorry, something went wrong.
No results found
This is a minor release, adding support for live-reload on error pages.
2.1.0
13 Mar 13:46
Compare
Sorry, something went wrong.
No results found
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:
2.0.0
22 Feb 14:57
Compare
Sorry, something went wrong.
No results found
This is a major release, coinciding with the DoneJS 2.0 release.
1.5.0
06 Nov 14:33
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
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