aero icon indicating copy to clipboard operation
aero copied to clipboard

:bullettrain_side: High-performance web server for Go (2016). New alpha (2024) with even better performance is currently in development at https://git.akyoto.dev/go/web (not production ready yet)

Results 7 aero issues
Sort by recently updated
recently updated
newest added

I wanted to see the docs on the go packages website, it has more info, but I found this ![Screenshot from 2022-08-03 16-15-46](https://user-images.githubusercontent.com/67649525/182713395-822145fa-9c50-48bc-b841-670b853900af.png) aparrently is due to something about lack...

### Code: ```go package main import "github.com/aerogo/aero" func echo(ctx aero.Context) error { return ctx.String("echo") } func echoWithParams(ctx aero.Context) error { return ctx.String(ctx.Get("str")) } func notFound(ctx aero.Context) error { return ctx.Error(404)...

Aero provides an option to set Port but there is no configuration setting for Host IP. Please provide an option for setting Host IP.

enhancement
help wanted

I am returning an error from my route handler like this ```` return errors.New("Request interrupted by the client") ```` and I have registered a callback like this ```` app.OnError(func(ctx aero.Context,...

bug
help wanted

Trailing slash stopped working for static routes. The fix is super simple, just adding the trailing slash route in `tree.go`. I haven't had the time to do it yet but...

bug
help wanted

Hi Team, I found possible IsPrivate function bypass on aero framework on https://github.com/aerogo/aero/blob/f70e4d9aa6b9c894ff24fe6ec560f762986d37e4/IP.go#L17 PoC: https://go.dev/play/p/r41I__AxFUN If you give 0.0.0.0 which can be point to localhost, it can be bypassed