vektor icon indicating copy to clipboard operation
vektor copied to clipboard

Opinionated production-grade HTTP server framework for Go

Results 25 vektor issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [golang.org/x/crypto](https://togithub.com/golang/crypto) | require | digest | `0559593` -> `c86fa9a` | ---...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [go](https://go.dev/) ([source](https://togithub.com/golang/go)) | golang | minor | `1.18` -> `1.19` |...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/sethvargo/go-envconfig](https://togithub.com/sethvargo/go-envconfig) | require | minor | `v0.7.0` -> `v0.8.2` | ---...

Whether or not a request can be handled with a trailing slash is up to the user, but Vektor should handle both. For example, it's common to do something like:...

It's helpful to have the option to defer port umber selection to the OS when writing tests to avoid bind conflicts. It would be great if this were an option...

While Vektor is not directly comparable to every other Go web framework due to its different feature set, it would still be useful to add benchmarks. See: https://github.com/smallnest/go-web-framework-benchmark

enhancement

Mainly talking about this: https://github.com/suborbital/vektor/blob/main/vk/server.go#L42-L46

It would be neat if Vektor could generate a list of registered routes that could be compared against an existing OpenAPI spec to ensure that all of the routes are...

enhancement

A place for us to add thoughts on which methods we might want to implement into response.go!

enhancement

When I'm using `AssertBodyString`, I can get this error: `body length mismatch: got 19 runes, want 18 runes` In this case I would like to know what the expected and...