Essen is a golang based micro web framework, inspired by express.js framework for node.js. It is in a very early stage, with some request and response mapping, With time it will ripe.
The time I started developing it I had that sensation of eating something, in german essen is To eat so the name :P :'|)
package main
import(
"github.com/akshitgrover/essen"
)
func main(){
e := essen.App()
e.Use("/getpath",func(res essen.Response,req essen.Request){
res.Send(200, "Hello World")
}) // Use Method is for any request method
// Similar Methods For Post And Get Request
e.Listen(<port>) // Specify The PORT
}
This project is in very early stage, will be developing it further.
Will love any suggestions and ideas for the same.
Copyright (c) 2018 Akshit Grover