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

This is a robot (not an advertisement) that I am currently using. From my own usage experience, it feels good. It is capable of helping repository members solve some basic...

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

https://github.com/julienschmidt/httprouter now supports OPTIONS response generation by a boolean flag The code paths for routing still seem quite close. Can we bring this enhancement into the Gin router? Relevant code:...

- With issues: - Gin do not support javascript ? - If I added javascript into the html template file ,It will not appear in the view ? ## Description...

Which one of the following is more correct if I want to make sure Recovery is always run at the end? From the way I understand the docs + other...

I want to use grouping function after all the middelwares and routes registered. I have tried [this](https://github.com/gin-gonic/gin/issues/1125) solution but it is not suitable for me. I am using oapi generator...

**How to write log file** ``` package main import ( "github.com/gin-gonic/gin" ) func main() { // Disable Console Color, you don't need console color when writing the logs to file....

Here's sample code: ``` package main import ( "net/http" "github.com/gin-gonic/gin" ) //CORSMiddleware ... func CORSMiddleware() gin.HandlerFunc { return func(c *gin.Context) { c.Writer.Header().Set("Access-Control-Allow-Origin", "http://localhost") c.Writer.Header().Set("Access-Control-Max-Age", "86400") c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT,...

## Description When the gin engine's tree is not aware of a path `/foo/` , instead of returning a 404, it responds plainly with a `307 Location: /foo` (or 301...

added a GetHandlerPath method to get registered handlers path