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

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.22.0 to 0.24.0. Commits 7bbe320 go.mod: update golang.org/x dependencies c48da13 http2: fix TestServerContinuationFlood flakes 762b58d http2: fix tipos in comment ba87210 http2: close connections when receiving too...

dependencies
go

## Feature Add `binding.BindUnmarshaler` interface to support custom unmarshaling (from the suggestion in https://github.com/gin-gonic/gin/issues/2673) ## Description This PR is inspired by the information provided on the following page: [labstack/echo/v4#BindUnmarshaler ](https://pkg.go.dev/github.com/labstack/echo/v4#BindUnmarshaler)...

https://github.com/gin-gonic/gin/pull/2037 ```go package main import ( "github.com/gin-gonic/gin" ) func main() { router := gin.Default() router.POST("/", func(c *gin.Context) { var s string c.BindPlain(&s) c.String(200, s) }) router.Run() } // client //...

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

We're are migrating one of our micro-services written in NodeJS Javascript which handles all things related to upload into Go, thinking to use gin framework. However I've noticed a few...

## Description Currently, the debugPrintWARNINGNew() function runs when you call gin.New(). This can, under the right circumstances, cause confusions to the developer if they call gin.New() and then call gin.SetMode(gin.ReleaseMode)...

## Description I'm trying to use GetUint64 and GetUint but it returns 0 ## How to reproduce ``` package main import ( "github.com/gin-gonic/gin" ) func main() { g := gin.Default()...

I translated `tree.go` into java, if you're interested in it: https://github.com/yswang0927/java-radixtree-url-router/blob/main/route/RouteNode.java

Bumps [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) from 2.2.0 to 2.2.1. Release notes Sourced from github.com/pelletier/go-toml/v2's releases. v2.2.1 What's Changed Fixed bugs Encode: fix indentation when marshalling slices as array tables by @​daniel-weisse in pelletier/go-toml#944...

dependencies
go

## Description I am trying import my static file with Static() function, but it seem gin can not find the file. How can I fix this? ## How to reproduce...