Last active
April 24, 2025 14:50
-
-
Save adrienjoly/9287328864cb00f15a21ae2f70e4bf9a to your computer and use it in GitHub Desktop.
Script to decode a JWT token locally, using Node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node -p 'process.env.TOKEN.split(".").map(part => Buffer.from(part, "base64").toString())' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment