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 472 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...

## Description I expected gzip and deflate and other types to be automatically handed, for some reason, or at least have a common middleware that would handle this. Is this...

- 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...

Enhance code readability by replacing the original "switch statement and if conditionals" with a simple "for loop" to iterate over the error slice. Below is my local test code: default_validator.go...

close https://github.com/gin-gonic/gin/issues/3629 - With pull requests: - Open your pull request against `master` - Your pull request should have no more than two commits, if not you should squash them....

Hi, In the default configuration, Gin enables RedirectTrailingSlash, which allows paths with trailing slashes to work properly even in `/:param1/:param2` pattern, for example `/hostname/evil.com/`. This is achieved by redirecting users...

bug

- 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...

Delete unnecessary initialization of the context formCache. Below is my local test code: context.go ```go func (c *Context) initFormCache() { if c.formCache == nil { c.formCache = make(url.Values) req :=...

My current architecture is a mix of static files and REST endpoints and I want to migrate from REST to gRPC - which is working quite well in itself. To...

this is my code: c.HTML(http.StatusOK, "updateRecord.html", gin.H{ "patientId": record.PatientId, "patientName": record.PatientName, "doctorId": record.DoctorId, "doctorName": record.DoctorName, }) c.Redirect(http.StatusFound, "/admin/update") I want redirect web page to ''/admin/update'',and sent some data to ''/admin/update'',...