alfred icon indicating copy to clipboard operation
alfred copied to clipboard

A performant, expressjs like server framework with a few gadgets that make life even easier.

Results 29 alfred issues
Sort by recently updated
recently updated
newest added

Hello, On the backend side, I use a code to access my photos. app.get("/assets/files/*", (req, res) => Directory('files/')); If I write another link instead of the photo link, I can...

Fixes https://github.com/rknell/alfred/issues/102

Thanks for this amazing Framework, this my First PR - Updated to Dart 2.17.1 - Removed EnumToString and Pedantic dependencies - Now Using Lints dependencies. - Lints Warning Solves.

the body I'm sending: ```JSON { "email": "[email protected]", } ``` the error I'm getting: ![image](https://user-images.githubusercontent.com/63405252/160504979-0aba143d-e9f2-48c6-9491-1c7c3642e123.png)

Thanks for this amazing idea! Inspired by this Issue : https://github.com/rknell/alfred/issues/88 With this Mixin we can create class-based middlewares ```dart class _ExampleMiddleware with CallableRequestMixin{ @override FutureOr call(HttpRequest req, HttpResponse res)...

Hello, I am trying to send multiple keys/value with the same key name using the post method using form-data. However, I can only get the last one of the values...

Fixed issue using flutter web where response headers were being blocked when sent from alfred.

Maybe add your framework to [FrameworkBenchmarks](https://github.com/TechEmpower/FrameworkBenchmarks) so you can compare its performance?

enhancement

This is not an issue with the package, but an example of a way you could implement Middlewares very cleanly: The idea, I got from https://github.com/vandadnp/flutter-tips-and-tricks#callable-classes-in-dart. ```dart // login_middleware.dart import...

documentation