dhttpd 4.3.0
dhttpd: ^4.3.0 copied to clipboard
A static HTTP file server for easy local hosting of a directory.
4.3.0 #
- Added
--quietflag to disable request logging.
4.2.0 #
- Added support for
https. - Support multiple
--headersflags and more robust header value parsing. For example:--headers="header1=value1;header2=value2"or--headers="header1=value1" --headers="header2=value2" - Added
--list-filesflag to show a directory listing when noindex.htmlis present. - Added
--versionflag. - Added clickable link to serve output.
- Require
sdk: ^3.10.0.
4.1.0 #
- Add "headers" option to add additional response headers.
For example:
--headers="header1=value;header2=value;" - Update minimum Dart SDK to
3.0.0.
4.0.1 #
- Improve README
4.0.0 #
- Update minimum Dart SDK to
2.12.0. - Enable null safety.
3.0.2 #
- Update minimum Dart SDK to
2.6.0. - Fix many lints affecting package score.
3.0.1 #
- Updated a number of dependencies.
3.0.0 #
- Set Dart SDK constraint to '>=2.0.0-dev.48.0 <3.0.0'.
- Removed top-level fields
DEFAULT_PORTandDEFAULT_HOSTfrom library.
2.0.0 #
-
Removed
allow-originflag. In reality, this flag never worked because theshelfpipeline was not configured correctly. -
Source moved to github.com/kevmoo/dhttpd.
1.0.0 #
- No change in functionality, just version and doc tweaks.
0.3.1 #
- Fixed bug with setting the path from the command line.
- Start the server with
dhttpd.
0.3.0 #
- New
hostcommand-line flag, to set the hostname to listen on. Defaults tolocalhost
0.2.0 #
- New
allow-origincommand-line flag for CORS headers. Thanks to @gmosx for the patch.