gofiber/fiber
gofiber/fiber
Activity
Last release
Open issues
Open PRs
License
release notes
release notes
Published 9/27/2020
PatchContains new featuresfunc (a *App) Mount(prefix string, app *fiber.App) fiber.Router
micro := fiber.New()
micro.Get("/doe", func(c *fiberCtx) error {
return c.SendStatus(StatusOK)
})
app := fiber.New()
app.Mount("/john", micro) // GET /john/doe -> 200 OK
SameSite=Lax by default https://github.com/gofiber/fiber/issues/825release notes
Published 9/27/2020
PatchContains new featuresfunc (a *App) Mount(prefix string, app *fiber.App) fiber.Router
micro := fiber.New()
micro.Get("/doe", func(c *fiberCtx) error {
return c.SendStatus(StatusOK)
})
app := fiber.New()
app.Mount("/john", micro) // GET /john/doe -> 200 OK
SameSite=Lax by default https://github.com/gofiber/fiber/issues/825⚡️ Express inspired web framework written in Go