Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T21:47:49.000Z (about 6 years ago)
- Last Synced: 2024-06-20T12:51:21.170Z (7 months ago)
- Topics: framework, go, golang, web, web-framework
- Language: Go
- Homepage: https://akshitgrover.github.io/essen
- Size: 29.3 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Essen
[![GoDoc](https://godoc.org/github.com/akshitgrover/essen?status.svg)](https://godoc.org/github.com/akshitgrover/essen)
[![Go Report Card](https://goreportcard.com/badge/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 mainimport(
"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