dart-express icon indicating copy to clipboard operation
dart-express copied to clipboard

Express-like HTTP framework written in Dart

Results 21 dart-express issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [markdown](https://togithub.com/dart-lang/markdown) | dependencies | major | `^4.0.1` -> `^6.0.0` | ---...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [lints](https://togithub.com/dart-lang/lints) | dev_dependencies | major | `^1.0.1` -> `^2.0.0` | ---...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | major | `v2` -> `v3` | ---...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [path_to_regexp](https://togithub.com/leonsenft/path_to_regexp) | dependencies | minor | `^0.2.1` -> `^0.4.0` | ---...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/deriegle/dart-express). ## Config Migration Needed - [ ]...

I'd like a way to use .set() with our own keys, as well as the ability to use the router in multiple files Example: ./routes/router.dart ``` import 'package:dart_express/dart_express.dart'; Router MainRouter()...

right now when I try to compile a dart app that depends on `dart_express` I get the following error: ```bash error: import of dart:mirrors is not supported in the current...

I have got handler: ``` app.post('/foo', (req, res) async { /* insert some data to DB */ } ``` sometimes I am getting 504 error from from it when I...

In some cases (e.g. testing), an App.stop() method would be useful, which stops listening