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 🙏

© 2025 – Pkg Stats / Ryan Hefner

jwt-auth-pack

v3.0.0

Published

jwt auth package

Downloads

32

Readme

jwt-auth-pack

A lightweight and easy-to-use authentication middleware package for Express.js applications. This package provides JWT-based authentication with a simple and flexible API.

Installation

npm install jwt-auth-pack
# or
yarn add jwt-auth-pack
# or
pnpm add jwt-auth-pack

Features

  • JWT-based authentication
  • Express.js middleware integration
  • TypeScript support
  • Easy token creation and verification
  • Configurable token expiration
  • Environment variable support for secret key

Usage

Basic Setup

  1. First, set up your environment variable:
AUTH_SECRET=your_secret_key_here
  1. Import and use the middleware in your Express application:
import express from "express";
import UserAuth from "jwt-auth-pack";

const app = express();
const auth = new UserAuth();

// Protected route example
app.get("/protected", auth.auth, (req, res) => {
  // Access the authenticated user's ID
  const userId = req.userId;
  res.json({ message: "Protected route accessed", userId });
});

Creating Tokens

import UserAuth from "jwt-auth-pack";

const auth = new UserAuth();

// Create a token with user data
const userData = {
  userId: "123",
  email: "[email protected]",
};

// Token expires in 60 minutes
const token = await auth.createToken(userData, 60);

Verifying Tokens

The middleware automatically verifies tokens from:

  • Request body (req.body.authToken)
  • Query parameters (req.query.authToken)
  • URL parameters (req.params.authToken)
  • Request headers (req.headers.authorization) // Bearer token format
  • Request headers (req.headers.authToken)
  • Cookies (req.cookies.authToken)

API Reference

UserAuth Class

Constructor

new UserAuth();

Creates a new instance of the authentication middleware.

Methods

auth
auth(req: Request, res: Response, next: NextFunction): Promise<void>

Express middleware for protecting routes. Verifies the JWT token and attaches the user ID to the request object.

createToken
createToken(data: {userId:string|number,data:object}, time: number): Promise<string>

Creates a new JWT token.

  • data: Object containing user data
    • userId: Unique identifier for the user (string or number)
    • data: Additional user data to include in the token
  • time: Token expiration time in minutes
verifyToken
verifyToken(token: string): Promise<IVerified>

Verifies a JWT token and returns the decoded data.

hashPassword
hashPassword(password: string): Promise<string>

Hashes a password using bcrypt.

comparePassword
comparePassword(password: string, hashedPassword: string): Promise<boolean>

Compares a password with a hashed password.

Error Handling

The middleware automatically handles common authentication errors:

  • Missing token
  • Invalid token
  • Expired token

TypeScript Support

This package is written in TypeScript and includes type definitions.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

License

ISC

Author

Suryansh Verma