Simple library to validate JWT tokens
# npm
npm install @kinde/jwt-validator
# yarn
yarn add @kinde/jwt-validator
# pnpm
pnpm install @kinde/jwt-validator
import { validateToken, type jwtValidationResponse } from "@kinde/jwt-validator";
const validationResult: jwtValidationResponse = await validateToken({
token: "eyJhbGc...",
domain: "http://mybusiness.kinde.com"
});
Kinde Documentation - Explore the Kinde docs
If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch.
- Make your changes.
- Submit a pull request.
By contributing to Kinde, you agree that your contributions will be licensed under its MIT License.