https://github.com/mathcale/jat
It's `cat` for JWTs: a command-line tool to visualize some token's content, written in Go
https://github.com/mathcale/jat
cli go jwt
Last synced: 12 months ago
JSON representation
It's `cat` for JWTs: a command-line tool to visualize some token's content, written in Go
- Host: GitHub
- URL: https://github.com/mathcale/jat
- Owner: mathcale
- Created: 2021-11-21T23:16:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-07T01:56:05.000Z (over 3 years ago)
- Last Synced: 2025-04-01T22:01:04.805Z (12 months ago)
- Topics: cli, go, jwt
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jat
It's `cat`, but for JWTs. A command-line tool to parse JWT payloads, written in Go.
[](https://github.com/mathcale/jat/actions/workflows/build.yml)
## Usage
```sh
jat
```
## Install
1. Navigate to the [Releases](https://github.com/mathcale/jat/releases) page;
2. Download the corresponding version for your OS;
3. Decompress the archive and place its content on a directory of your choice (preferably `$HOME/.local/bin`);
4. _(Optional)_ Add this directory to PATH, if it's not already;
5. Done!
## Running locally
1. Clone this repository;
2. Compile the program with `make build`;
3. A fresh new binary will be outputted to the `bin` directory, and you can run it with `./bin/jat`;