vane
vane copied to clipboard
Server-side framework for Dart/Dartlang with a built-in middleware system.
Hi @Scorpiion, I reach here following what is done in the dart community. Perhaps, you could be interested in participating in https://github.com/the-benchmarker/web-frameworks. The idea of this project is to compare...
Is this project dead?
…rtvoid website on documentation for Vane (unverified for correctness)
See examples here on how to use new `shared: true` setting: https://groups.google.com/a/dartlang.org/forum/#!topic/misc/Ju4f2d5ziwE
I added support for HTTPS serving with certificates configured. It is possible to serve both HTTP and HTTPS or to automatically redirect HTTP requests to HTTPS. I also added the...
See: https://github.com/DartVoid/Vane/blob/master/lib/src/generate_client_routes.dart#L15 This works: dart bin/server.dart This fails: pub run bin/server.dart Error on Linux using pub run: Unhandled exception: Unsupported operation: Cannot extract a file path from a http URI...
Starting the server with an empty `app.yaml` results in a crash when generating the routes. This is due to that Vane checks if an `app.yaml` is present, but not that...
Today when you are doing actions on a database, you have to first wait for a future before you get your connection, and by doing so you also get one...
Today this works: ``` dart @Route("{?max}", method: GET) Future templates(String max) ``` But this does not work: ``` dart @Route("{?max}", method: GET) Future templates(int max) ``` We should make this...