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

I'm building a Rest API with Gin and I **want to store currently logged-in user's roles** somewhere I can reach within the application for each request to check that user's...

I use r.Run to open server , but I found it's will not open server! this is my code: main.go ` func main() { interfaceAddr, err := net.InterfaceAddrs() //fmt.Println(interfaceAddr) if...

cc #1714 similar to https://github.com/gorilla/handlers/pull/159/files

- With issues: - The Following Code Is Panic - It Always Using Default Time Layout "2006-01-02T15:04:05Z07:00" - Error Msg is "panic: parsing time ""2022-04-09"" as ""2006-01-02T15:04:05Z07:00"": cannot parse """...

## Description I have written a large number of tests for my API in one file, and everything works fine there. Now I want to separate these tests into individual...

Give those who wish to add a body record to their access log an option. This is a more useful way!

Cookies values are already sanitized by the Go http library, so there is no need to invoke QueryEscape() on them. Furthermore, QueryEscape() has the undesirable effect of replacing spaces wiith...

Hello 👋 I run a security community that finds and fixes vulnerabilities in OSS. A researcher (@dimasma0305) has found a potential issue, which I would be eager to share with...

## Description I am following a book Building Distributed Applications in Gin by Mohamed Labouardy . In the book was introduced a way to bundle the template and static files...