# tokenman **Repository Path**: mirrors_emicklei/tokenman ## Basic Information - **Project Name**: tokenman - **Description**: small Go library for JWT token management - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tokenman Simple Go library for generating and verifying JWT Tokens on top of `github.com/golang-jwt/jwt/v5`. ### install go get -u github.com/emicklei/tokenman ### usage tm, _ := NewTokenMan("your-signing-key") token, _ := tm.CreateToken("some-identity", 1) // TTL = 1 hour accessToken, _ := tm.VerifyToken(token)