aewinformatica / react-native-jwt2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-jwt2

Getting started

$ npm install react-native-jwt2 --save or $ yarn add react-native-jwt2

Usage

import {decodeToken, isExpired} from 'react-native-jwt2';

  const token =
    'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.AcYwv-HS6Xo11mDHtOZLjdTGci2wJ146IKiHj0JEH1k';

  const decodedToken = decodeToken(token);
  console.log('decoded:', decodedToken);
  console.log('expired?', isExpired(token));

About


Languages

Language:JavaScript 40.5%Language:Java 36.6%Language:Ruby 14.9%Language:Objective-C 8.0%