1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-25 03:23:47 +00:00
fiber/README_NEW.md
2020-02-07 02:13:56 +01:00

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)
}