New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

jwt-simple

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jwt-simple

JWT(JSON Web Token) encode and decode module

0.5.6
latest
Version published
Weekly downloads
223K
1.55%
Maintainers
1
Weekly downloads
 
Created

What is jwt-simple?

The jwt-simple npm package is a lightweight library for encoding and decoding JSON Web Tokens (JWT). It provides a simple API for creating and verifying JWTs, which are commonly used for authentication and secure data exchange.

What are jwt-simple's main functionalities?

Encoding a JWT

This feature allows you to encode a payload into a JWT using a secret key. The resulting token can be used for secure data transmission.

const jwt = require('jwt-simple');
const payload = { foo: 'bar' };
const secret = 'mysecretkey';
const token = jwt.encode(payload, secret);
console.log(token);

Decoding a JWT

This feature allows you to decode a JWT using the same secret key that was used to encode it. The decoded payload can then be accessed and used as needed.

const jwt = require('jwt-simple');
const token = 'your.jwt.token';
const secret = 'mysecretkey';
const decoded = jwt.decode(token, secret);
console.log(decoded);

Other packages similar to jwt-simple

FAQs

Package last updated on 30 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts