dart_express 0.2.2 dart_express: ^0.2.2 copied to clipboard
An unopinionated express-like HTTP framework built in Dart, includes the ability to render Mustache, Jael and HTML files, and simple routing.
0.1.0 #
- Initial version of Dart express with basic functionality for routing and middleware
0.1.1 #
- Add dependencies for Jael (will be breaking this out to a separate package later)
0.2.0 #
- Add
path_to_regexp
package to improve route matching. - Add support for route parameters using
path_to_regexp
package. - Improve README to include additional documentation
- Add
res.end()
andres.location()
methods to Response class.
0.2.1 #
- Clean up Request & Response classes
- Export HTTPStatus class from dart-express directly
0.2.2 #
- Fix issue with relative paths for views
- Add app.set('views', './path');
- Add app.set('views engine', './path')