https://github.com/akshitgrover/essen
Essen is a golang based micro web framework, inspired by express.js framework for node.js.
https://github.com/akshitgrover/essen
framework go golang web web-framework
Last synced: 11 months ago
JSON representation
Essen is a golang based micro web framework, inspired by express.js framework for node.js.
- Host: GitHub
- URL: https://github.com/akshitgrover/essen
- Owner: akshitgrover
- License: mit
- Created: 2018-06-01T23:19:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T21:47:49.000Z (over 7 years ago)
- Last Synced: 2025-04-05T09:51:11.461Z (12 months ago)
- Topics: framework, go, golang, web, web-framework
- Language: Go
- Homepage: https://akshitgrover.github.io/essen
- Size: 29.3 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Essen
[](https://godoc.org/github.com/akshitgrover/essen)
[](https://goreportcard.com/report/github.com/akshitgrover/essen)
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.
## Why the name?
The time I started developing it I had that sensation of eating something, in german **essen** is **To eat** so the name :P :'|)
## 10 seconds to code:
```go
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() // Specify The PORT
}
```
## P.S.
This project is in very early stage, will be developing it further.
Will love any suggestions and ideas for the same.
## Copyright & License
[MIT License](./LICENSE)
Copyright (c) 2018 Akshit Grover