gin icon indicating copy to clipboard operation
gin copied to clipboard

Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.

Results 456 gin issues
Sort by recently updated
recently updated
newest added

- With issues: - Use the search tool before opening a new issue. - Please provide source code and commit sha if you found a bug. - Review existing issues...

Add a method to modify basePath to achieve a function similar to contextPath

Previously, when the error would be triggered, it was possible that a slice out of bounds panic would occur before the intended panic message. I've added a nil/slice length check...

## Description In cases where we create a context with no engine (e.g. unit tests), it might lead to a nil pointer dereference. ## How to reproduce ``` package main...

bug

## Description I use gin in my docker container. I start my gin server use this: (In fact, it works, i can remote debug use VSCode) ``` dlv --listen=:2345 --headless=true...

## Description I use gin as my web framework. everytime I packup my binary file, in a pure container, it always cost too much time to download [locales package](github.com/go-playground/locales) since...

i use nginx to proxy my gin service in same server, sometimes it can not access with a time out error from nginx, nginx log like this: `2022/05/30 09:44:01 [info]...

- With issues: - Use the search tool before opening a new issue. - Please provide source code and commit sha if you found a bug. - Review existing issues...

Here is the code that can report an error ```go package main import ( "fmt" "github.com/gin-gonic/gin" "io" "net/http" "os" "time" ) type header struct { Duration time.Duration `header:"duration"` CreateTime time.Time...

bug

> 6.5.5. 405 Method Not Allowed > > The 405 (Method Not Allowed) status code indicates that the method > received in the request-line is known by the origin server...

enhancement