mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-25 03:23:47 +00:00
1.1 KiB
1.1 KiB
Fiber
Expressjs inspired web framework
for Go, designed to ease
things up for fast development
with zero memory allocation
and raw performance
in mind.
package main
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
app.Get("/", func(c *fiber.Ctx) {
c.Write("Hello, World!")
})
app.Listen(3000)
}