SAP-BTP-Spielwiese/app1/node_modules/jwt-decode
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00
..
build completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
lib completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
test completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
.npmignore completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
bower.json completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
Gruntfile.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
LICENSE completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
package.json completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
README.md completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
standalone.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
test_harness.html completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
testem.yml completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
testem_dev.yml completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00

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

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

var decoded = jwt_decode(token);
console.log(decoded);

/* prints:
 * { 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:

var jwtDecode = require('jwt-decode');

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.