Rapid is a lightweight micro-framework built for quickly developing webservers and rest apis.
With a syntax and routing system inspired by Express.js, Flask & Laravel, developing end points is easy to pick up.
go get github.com/Kiricon/Rapid
package main
import (
"github.com/Kiricon/Rapid"
)
func main() {
app := rapid.App()
app.Get("/", func(c rapid.Connection) {
c.Send("Hello World")
})
app.Listen(3000)
}
- Routing
- Url parameters
- Templating
- Static file serving
- Zero Dependencies (Only standard Library calls)