https://github.com/vapor/jwt
Vapor JWT provider
https://github.com/vapor/jwt
authentication jwt server-side-swift swift swift-linux vapor vapor-service
Last synced: 25 days ago
JSON representation
Vapor JWT provider
- Host: GitHub
- URL: https://github.com/vapor/jwt
- Owner: vapor
- License: mit
- Created: 2016-10-03T21:49:22.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-02-03T20:12:31.000Z (4 months ago)
- Last Synced: 2025-04-08T11:47:59.770Z (about 2 months ago)
- Topics: authentication, jwt, server-side-swift, swift, swift-linux, vapor, vapor-service
- Language: Swift
- Homepage:
- Size: 379 KB
- Stars: 335
- Watchers: 28
- Forks: 71
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-jwt - jwt - Implementation in Swift. (Libraries / Swift)
README
Support for JWT (JSON Web Tokens) in Vapor.
This package integrates [JWTKit](https://github.com/vapor/jwt-kit.git) with Vapor.### Installation
Use the SPM string to easily include the package in your `Package.swift` file.
```swift
.package(url: "https://github.com/vapor/jwt.git", from: "5.0.0")
```and add it to your target's dependencies:
```swift
.product(name: "JWT", package: "jwt")
```