npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

shieldbearer

v1.2.5

Published

NPM package meticulously crafted to simplify JSON Web Token (JWT) operations in JavaScript projects

Downloads

10

Readme

ShieldBearer

npm npm downloads GitHub last commit (branch) GitHub (Pre-)Release Date Codecov branch Codacy Badge GitHub

ShieldBearer is a cutting-edge npm package meticulously crafted to simplify JSON Web Token (JWT) operations in JavaScript projects. This library stands out by not relying on any external libraries or tools, ensuring a lightweight and efficient solution for secure token handling. ShieldBearer empowers developers to seamlessly sign, decode, and validate JWTs, enhancing the security and reliability of applications.

Benefits

  • Zero Dependencies: ShieldBearer doesn't rely on any external libraries or tools, providing a pure and lightweight JWT solution.
  • Efficient Token Operations: Sign, decode, and validate JWTs with ease, ensuring secure data transmission and authentication.
  • Enhanced Security: Utilize robust encryption techniques to safeguard sensitive data, bolstering the overall security of your applications.
  • Developer-Friendly API: ShieldBearer offers an intuitive and developer-friendly interface, allowing for seamless integration and usage.
  • Transparent Codebase: Explore a well-documented and transparent codebase, enabling developers to understand and customize the library to fit their needs.

Installation

Install ShieldBearer via npm:

npm install shieldbearer

Usage

  • Require ShieldBearer in your JavaScript file and start harnessing the power of secure JWT operations:
const shieldbearer = require('shieldbearer');

// Sign a JWT
const token = shieldbearer.sign({ userId: 123 });

// Decode a JWT
const decodedData = shieldbearer.decode(token);

// Validate a JWT
const isValid = shieldbearer.validate(token);

Example

  • Here's a basic example of signing, decoding, and validating a JWT using ShieldBearer.
const shieldbearer = require("shieldbearer");

// Sign a JWT
const token = shieldbearer.sign({ userId: 123 });

// Decode the JWT
const decodedData = shieldbearer.decode(token);
console.log(decodedData); // Output: { userId: 123 }

// Validate the JWT
const isValid = shieldbearer.validate(token);
console.log(isValid); // Output: true

Improved Security

  • You are also able to improve token security by using a secret key to perform operations.
- The secret key works like an ssh encryption, you most have the same secret in both points to ensure success.
const shieldbearer = require("shieldbearer");

// Sign a JWT
const token = shieldbearer.sign({ userId: 123 }, "secretKey");

// Decode the JWT
const decodedData = shieldbearer.decode(token, "secretKey");
console.log(decodedData); // Output: { userId: 123 }

// Validate the JWT
const isValid = shieldbearer.validate(token, "secretKey");
console.log(isValid); // Output: true

Contributing

  • Contributions are welcome! For bug reports or feature requests, please submit an issue or make a pull request. For more information, check out our contribution guidelines.