Skip to content

Latest commit

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Session middleware for Gin

BuildCodecovReportCardGoDocLicense

Quick Start

Download and install

$ go get -u -v github.com/go-session/gin-session

Create file server.go

package main
import (
"net/http""github.com/gin-gonic/gin""github.com/go-session/gin-session"
)
funcmain() {
app:=gin.Default()
app.Use(ginsession.New())
app.GET("/", func(ctx*gin.Context) {
store:=ginsession.FromContext(ctx)
store.Set("foo", "bar")
err:=store.Save()
iferr!=nil {
ctx.AbortWithError(500, err)
return
}
ctx.Redirect(302, "/foo")
})
app.GET("/foo", func(ctx*gin.Context) {
store:=ginsession.FromContext(ctx)
foo, ok:=store.Get("foo")
if!ok {
ctx.AbortWithStatus(404)
return
}
ctx.String(http.StatusOK, "foo:%s", foo)
})
app.Run(":8080")
}

Build and run

$ go build server.go
$ ./server

Open in your web browser

http://localhost:8080

foo:bar

MIT License

Copyright (c) 2018 Lyric

Releases

Packages

Contributors

Languages