Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-07T01:56:05.000Z (over 2 years ago)
- Last Synced: 2025-02-06T20:45:50.626Z (6 days ago)
- Topics: cli, go, jwt
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- 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.
[![.github/workflows/build.yml](https://github.com/mathcale/jat/actions/workflows/build.yml/badge.svg?branch=main)](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`;