docs(readme): fix language and moved link (#3962)
* Update README.md * more fixes & fix moved link
This commit is contained in:
		
							
								
								
									
										62
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										62
									
								
								README.md
									
									
									
									
									
								
							@ -11,37 +11,36 @@
 | 
				
			|||||||
[](https://github.com/gin-gonic/gin/releases)
 | 
					[](https://github.com/gin-gonic/gin/releases)
 | 
				
			||||||
[](https://www.tickgit.com/browse?repo=github.com/gin-gonic/gin)
 | 
					[](https://www.tickgit.com/browse?repo=github.com/gin-gonic/gin)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Gin is a web framework written in [Go](https://go.dev/). It features a martini-like API with performance that is up to 40 times faster thanks to [httprouter](https://github.com/julienschmidt/httprouter). If you need performance and good productivity, you will love Gin.
 | 
					Gin is a web framework written in [Go](https://go.dev/). It features a martini-like API with performance that is up to 40 times faster thanks to [httprouter](https://github.com/julienschmidt/httprouter).
 | 
				
			||||||
 | 
					If you need performance and good productivity, you will love Gin.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**The key features of Gin are:**
 | 
					**Gin's key features are:**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Zero allocation router
 | 
					- Zero allocation router
 | 
				
			||||||
- Fast
 | 
					- Speed
 | 
				
			||||||
- Middleware support
 | 
					- Middleware support
 | 
				
			||||||
- Crash-free
 | 
					- Crash-free
 | 
				
			||||||
- JSON validation
 | 
					- JSON validation
 | 
				
			||||||
- Routes grouping
 | 
					- Route grouping
 | 
				
			||||||
- Error management
 | 
					- Error management
 | 
				
			||||||
- Rendering built-in
 | 
					- Built-in rendering
 | 
				
			||||||
- Extendable
 | 
					- Extensible
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Getting started
 | 
					## Getting started
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Prerequisites
 | 
					### Prerequisites
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The required version of [Go](https://go.dev/) language is [1.21](https://go.dev/doc/devel/release#go1.21.0) or above.
 | 
					Gin requires [Go](https://go.dev/) version [1.21](https://go.dev/doc/devel/release#go1.21.0) or above.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Getting Gin
 | 
					### Getting Gin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
With [Go module](https://github.com/golang/go/wiki/Modules) support, simply add the following import
 | 
					With [Go's module support](https://go.dev/wiki/Modules#how-to-use-modules), `go [build|run|test]` automatically fetches the necessary dependencies when you add the import in your code:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```sh
 | 
					```sh
 | 
				
			||||||
import "github.com/gin-gonic/gin"
 | 
					import "github.com/gin-gonic/gin"
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
to your code, and then `go [build|run|test]` will automatically fetch the necessary dependencies.
 | 
					Alternatively, use `go get`:
 | 
				
			||||||
 | 
					 | 
				
			||||||
Otherwise, run the following Go command to install the `gin` package:
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
```sh
 | 
					```sh
 | 
				
			||||||
go get -u github.com/gin-gonic/gin
 | 
					go get -u github.com/gin-gonic/gin
 | 
				
			||||||
@ -49,7 +48,7 @@ go get -u github.com/gin-gonic/gin
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
### Running Gin
 | 
					### Running Gin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
First you need to import Gin package for using Gin, one simplest example likes the follow `example.go`:
 | 
					A basic example:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```go
 | 
					```go
 | 
				
			||||||
package main
 | 
					package main
 | 
				
			||||||
@ -71,28 +70,29 @@ func main() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
And use the Go command to run the demo:
 | 
					To run the code, use the `go run` command, like:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```sh
 | 
					```sh
 | 
				
			||||||
# run example.go and visit 0.0.0.0:8080/ping on browser
 | 
					 | 
				
			||||||
$ go run example.go
 | 
					$ go run example.go
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Learn more examples
 | 
					Then visit [`0.0.0.0:8080/ping`](http://0.0.0.0:8080/ping) in your browser to see the response!
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### See more examples
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Quick Start
 | 
					#### Quick Start
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Learn and practice more examples, please read the [Gin Quick Start](docs/doc.md) which includes API examples and builds tag.
 | 
					Learn and practice with the [Gin Quick Start](docs/doc.md), which includes API examples and builds tag.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Examples
 | 
					#### Examples
 | 
				
			||||||
 | 
					
 | 
				
			||||||
A number of ready-to-run examples demonstrating various use cases of Gin on the [Gin examples](https://github.com/gin-gonic/examples) repository.
 | 
					A number of ready-to-run examples demonstrating various use cases of Gin are available in the [Gin examples](https://github.com/gin-gonic/examples) repository.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Documentation
 | 
					## Documentation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
See [API documentation and descriptions](https://godoc.org/github.com/gin-gonic/gin) for package.
 | 
					See the [API documentation on godoc.org](https://godoc.org/github.com/gin-gonic/gin).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
All documentation is available on the Gin website.
 | 
					The documentation is also available on [gin-gonic.com](https://gin-gonic.com) in several languages:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- [English](https://gin-gonic.com/docs/)
 | 
					- [English](https://gin-gonic.com/docs/)
 | 
				
			||||||
- [简体中文](https://gin-gonic.com/zh-cn/docs/)
 | 
					- [简体中文](https://gin-gonic.com/zh-cn/docs/)
 | 
				
			||||||
@ -103,15 +103,13 @@ All documentation is available on the Gin website.
 | 
				
			|||||||
- [Turkish](https://gin-gonic.com/tr/docs/)
 | 
					- [Turkish](https://gin-gonic.com/tr/docs/)
 | 
				
			||||||
- [Persian](https://gin-gonic.com/fa/docs/)
 | 
					- [Persian](https://gin-gonic.com/fa/docs/)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Articles about Gin
 | 
					### Articles
 | 
				
			||||||
 | 
					 | 
				
			||||||
A curated list of awesome Gin framework.
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
- [Tutorial: Developing a RESTful API with Go and Gin](https://go.dev/doc/tutorial/web-service-gin)
 | 
					- [Tutorial: Developing a RESTful API with Go and Gin](https://go.dev/doc/tutorial/web-service-gin)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Benchmarks
 | 
					## Benchmarks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Gin uses a custom version of [HttpRouter](https://github.com/julienschmidt/httprouter), [see all benchmarks details](/BENCHMARKS.md).
 | 
					Gin uses a custom version of [HttpRouter](https://github.com/julienschmidt/httprouter), [see all benchmarks](/BENCHMARKS.md).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| Benchmark name                 |       (1) |             (2) |          (3) |             (4) |
 | 
					| Benchmark name                 |       (1) |             (2) |          (3) |             (4) |
 | 
				
			||||||
| ------------------------------ | ---------:| ---------------:| ------------:| ---------------:|
 | 
					| ------------------------------ | ---------:| ---------------:| ------------:| ---------------:|
 | 
				
			||||||
@ -151,23 +149,23 @@ Gin uses a custom version of [HttpRouter](https://github.com/julienschmidt/httpr
 | 
				
			|||||||
- (3): Heap Memory (B/op), lower is better
 | 
					- (3): Heap Memory (B/op), lower is better
 | 
				
			||||||
- (4): Average Allocations per Repetition (allocs/op), lower is better
 | 
					- (4): Average Allocations per Repetition (allocs/op), lower is better
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Middlewares
 | 
					## Middleware
 | 
				
			||||||
 | 
					
 | 
				
			||||||
You can find many useful Gin middlewares at [gin-contrib](https://github.com/gin-contrib).
 | 
					You can find many useful Gin middlewares at [gin-contrib](https://github.com/gin-contrib).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Users
 | 
					## Uses
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Awesome project lists using [Gin](https://github.com/gin-gonic/gin) web framework.
 | 
					Here are some awesome projects that are using the [Gin](https://github.com/gin-gonic/gin) web framework.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- [gorush](https://github.com/appleboy/gorush): A push notification server written in Go.
 | 
					- [gorush](https://github.com/appleboy/gorush): A push notification server.
 | 
				
			||||||
- [fnproject](https://github.com/fnproject/fn): The container native, cloud agnostic serverless platform.
 | 
					- [fnproject](https://github.com/fnproject/fn): A container native, cloud agnostic serverless platform.
 | 
				
			||||||
- [photoprism](https://github.com/photoprism/photoprism): Personal photo management powered by Go and Google TensorFlow.
 | 
					- [photoprism](https://github.com/photoprism/photoprism): Personal photo management powered by Google TensorFlow.
 | 
				
			||||||
- [lura](https://github.com/luraproject/lura): Ultra performant API Gateway with middlewares.
 | 
					- [lura](https://github.com/luraproject/lura): Ultra performant API Gateway with middleware.
 | 
				
			||||||
- [picfit](https://github.com/thoas/picfit): An image resizing server written in Go.
 | 
					- [picfit](https://github.com/thoas/picfit): An image resizing server.
 | 
				
			||||||
- [dkron](https://github.com/distribworks/dkron): Distributed, fault tolerant job scheduling system.
 | 
					- [dkron](https://github.com/distribworks/dkron): Distributed, fault tolerant job scheduling system.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Contributing
 | 
					## Contributing
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Gin is the work of hundreds of contributors. We appreciate your help!
 | 
					Gin is the work of hundreds of contributors. We appreciate your help!
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Please see [CONTRIBUTING](CONTRIBUTING.md) for details on submitting patches and the contribution workflow.
 | 
					Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on submitting patches and the contribution workflow.
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user