GarryGaller
GarryGaller
How to access c.Locals ( where c is *fiber.Ctx) from a custom the websocket handler?
middleware websocket does not handle panic when using app.Use(recover.New()) for all routes.
Need examples of working with this middleware directly for applications written in fiber The examples for fasthttp do not reveal the topic.
``` nim let htmldoc =""" 12345.txt 12346.txt 12347 """ echo q(htmldoc).select("a[href=12345.txt]") #output: @[12345.txt, 12346.txt, 12347] let htmldoc2 =""" 12345 12346 12347 """ echo q(htmldoc2).select("a[href=12347]") #output: @[12345, 12346, 12347] let htmldoc3...