Bukdu.jl
Bukdu.jl copied to clipboard
Bukdu 🌌 is a web development framework for Julia
hello, As I understand using pipeline one can setup preprocessing https://github.com/wookay/Bukdu.jl/blob/master/examples/cors/ex2.jl Is there a way to setup postprocessing? i.e. some action which can be called AFTER processing function returned (in...
It seems that Bukdu and Revise do not currently place nice along each other: ```julia ERROR: MethodError: no method matching min_enabled_level(::Bukdu.Plug.Logger) The applicable method may be too new: running in...
Hi @wookay, I've updated to 0.4.1 but when receiving a JSON payload, it seems like the payload is not being parsed correctly. I followed this example https://github.com/wookay/Bukdu.jl/blob/master/examples/rest/ex2.jl The JSON payload...
Hi, Recently I started working with Julia developing microservices. I am using Bukdu to mount a server. Locally it works, but when trying to deploy it in Docker, it does...
Plug.Static is not providing proper errors. ```julia using Bukdu routes() do # correct way plug(Plug.Static, at="/static", from=normpath(joinpath(pwd(),"."))) # wrong - not able to read from subdirs but able to get...