module.web
module.web copied to clipboard
Duct module for running web applications
Hi James, With the `slf4j-nop` included, in projects requiring `duct/module.web` all logs are swallowed when used in combination with `duct.logger.clojure`, clojure.tools.logging and Logback. The way to avoid that is by...
This is just a preview, I want to sure about the code before writting tests.
Hi, I found that a usage of `muuntaja.middleware/wrap-format` is used in `duct.middleware.web/format` component without wrapping it into `muuntaja.middleware/wrap-exception` thus when a request body contains invalid JSON an exception is raised...
Middleware added to the :duct.core/handler :middleware vector doesn't seem to have any effect on static files. This is unfortunate, as gzip (added via the ring-gzip middleware) is hugely important for...
I'm using `ataraxy` instead of `compojure` for routing, so I want to `:exclusions [compojure]` dependency. But it got error due to `:duct.router/cascading` router depend on it. I think we should...
Hi, I made a PR to support log-requests' log level configurable. https://github.com/duct-framework/module.web/pull/20 I would like to displace log-requests message from my application, but I could not find any solution. So...
In the upcoming version there seems to be an issue with nested reitit routes. Flat routes work ``` :routes [["/ping" :my-test/ping] ["/pong" :my-test/pong]] ``` But when specified in nested form...