Theframeworkto scale
Minima is a reliable and lightweight framework for Go to carve the web. Developed with core net/http and other native packages, and with zero external dependencies.
Start using Minima with your existing projects!
DEVELOPED BY MINIMA CORE TEAMβ„’
Simple and flexible
Use Minima's utility layer on top of net/http
Minima is based on a custom implementation of radix tree which makes it extremely fast and efficient. Also, it is fully compatible with net/http which makes it a great choice for your next project.
	package main

	import "github.com/gominima/minima"

	func main() {
		app := minima.New()

		app.Get("/", func(res *minima.Response, req *minima.Request) {
			res.OK().Send("Hello World")
		})

		app.Listen(":3000")
	}
Hello World!
Install Minima
No dependencies, just good ol' net/http with a custom handler. Use it as a net/http wrapper or as an independent framework. Your choice.
Install Minima as a Go package
Run the following code in a terminal
go get github.com/gominima/minima
Create a simple Minima server
Create a Go file and get programming
	package main

	import "github.com/gominima/minima"
	
	func main() {
		app := minima.New()
		app.Listen(":3000")
	}
			
Get Started
Try Minima online!
Try Minima online with premade templates
Thanks to our Community!