An open API service indexing awesome lists of open source software.

https://github.com/felix-kaestner/lungo

A tiny, zero-dependency web framework based on net/http with an intuitive API.
https://github.com/felix-kaestner/lungo

go golang http middleware

Last synced: about 1 year ago
JSON representation

A tiny, zero-dependency web framework based on net/http with an intuitive API.

Awesome Lists containing this project

README

          

# Lungo


A tiny, zero-dependency web framework based on net/http with an intuitive API.




Issues


Stars


License


Stars


Issues





Twitter

## Quickstart

```go
package main

import "github.com/felix-kaestner/lungo"

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

app.Get("/", func(c *lungo.Context) error {
return c.Text("Hello, World!")
})

app.Listen(":3000")
}
```

## Installation

Install Lungo with the `go get` command:

```
$ go get -u github.com/felix-kaestner/lungo
```

## Contribute

All contributions in any form are welcome! 🙌🏻
Just use the [Issue](.github/ISSUE_TEMPLATE) and [Pull Request](.github/PULL_REQUEST_TEMPLATE) templates and I'll be happy to review your suggestions. 👍

## Support

Any kind of support is well appreciated! 👏🏻
If you want to tweet about the project, make sure to tag me [@kaestner_felix](https://twitter.com/kaestner_felix). You can also support my open source work on [GitHub Sponsors](https://github.com/sponsors/felix-kaestner).

---

Released under the [MIT License](LICENSE).