auth0/jwt-decode

Name: jwt-decode

Owner: Auth0

Description: Decode JWT tokens; useful for browser applications.

Created: 2014-02-24 19:18:02.0

Updated: 2018-01-17 20:41:01.0

Pushed: 2017-10-27 17:23:16.0

Homepage: null

Size: 73

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

jwt-decode is a small browser library that helps decoding JWTs token which are Base64Url encoded.

IMPORTANT: This library doesn't validate the token, any well formed JWT can be decoded. You should validate the token in your server-side logic by using something like express-jwt, koa-jwt, Owin Bearer JWT, etc.

Installation

Install with npm, bower, or downloading from the build directory of this repository.

Use with AMD, browserify or just include with an script tag.

Usage
token = 'eyJ0eXAiO.../// jwt token';

decoded = jwt_decode(token);
ole.log(decoded);

rints:
 foo: "bar",
 exp: 1393286893,
 iat: 1393268893  }

Note: A falsy token will throw an error.

Can also be used with browserify or webpack by doing npm install jwt-decode and requiring:

jwtDecode = require('jwt-decode');
Polymer Web Component

Can also be installed and used with Polymer-based wrapper.

Develop

Run grunt dev and fire a browser at http://localhost:9999/test_harness.html.

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.