A fresh modular Golang Web framework


A fantastic modular Go web framework with a slim core but limitless extensibility.

It is the successor of the Macaron framework and equips the most powerful routing syntax among all web frameworks within the Go ecosystem.

Getting started with this Go Framework for Web Applications

package main

import "github.com/flamego/flamego"

func main() {
	f := flamego.Classic()
	f.Get("/", func() string {
		return "Hello, Flamego!"
	})
	f.Run()
}

Features of this Golang Web Framework Project