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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jnode/auth

v1.0.0

Published

Simple authorization package for Node.js.

Readme

@jnode/auth

Simple authorization package for Node.js.

Installation

npm i @jnode/auth

Quick start

Import

const { AuthService } = require('@jnode/auth');
const crypto = require('crypto');

Basic usage

// Generate a pair of keys for demonstration
const { publicKey, privateKey } = crypto.generateKeyPairSync('rsa', {
  modulusLength: 2048,
});

// Initialize the service
const auth = new AuthService(publicKey, privateKey);

// Sign a token
const token = auth.signToken({ alg: 'RSA-SHA256' }, { userId: 123, role: 'admin' });

// Example token output:
// ABR7ImFsZyI6IlJTQS1TSEEyNTYifQAdeyJ1c2VySWQiOjEyMywicm9sZSI6ImFkbWluIn1JG1YPNJNfZ2jA29DcqiU_HojNAC34mz0ueYYOZ45nbHg86Q_Q7RULHsQfMp1tn0AdeGC9gStX1QK-fCB7Qgt3kF85qCtlDcYywDrjwmg19H0XnWeD27fXCOmmcM-rLjkVe61WDEb8rktmtlMJAUtivDYJr8RxyI2kQF-ZddlrgukjzRtua2_FmWmohb5MeahhfQ6xmlM1HRbYSMlUBaGjSxx_Q4s3wNrpMNDWiDM0adA1iHH5h00VRo2t5iepytOY3YunEW3_UXKcqr9PZ8KV-ikW2mXXp45Xw39U96dkeD3M9dR3vexL8yBc8kNDeT6a8YpHb63HW8s6LUlV_jzB

// Verify a token
try {
  const decoded = auth.verifyToken(token);
  console.log('Decoded:', decoded);
  /* 
  Output: 
  { 
    header: { alg: 'RSA-SHA256' }, 
    payload: { userId: 123, role: 'admin' } 
  }
  */
} catch (err) {
  console.error('Verification failed:', err.message);
}

How it works?

@jnode/auth provides a lightweight and binary-safe alternative to JWT, focusing on a straightforward token format encoded in base64url.

The token structure is as follows:

  1. Header Length: 2 bytes (UInt16BE)
  2. Header JSON: n bytes
  3. Payload Length: 2 bytes (UInt16BE)
  4. Payload JSON: n bytes
  5. Signature: RSA-SHA256 signature of the preceding segments (bytes 1 through 4).

This format ensures that the token is self-contained and tamper-proof while being extremely efficient to parse without complex regex or split operations.


Reference

Class: auth.AuthService

The main class to handle signing and verification of tokens.

new auth.AuthService(publicKey, privateKey)

Static method: AuthService.signToken(header, payload, privateKey)

Signs the provided header and payload using the RSA-SHA256 algorithm.

Static method: AuthService.verifyToken(token, publicKey)

Parses and verifies the token. Throws an Error if the signature is invalid or TypeError if keys are missing.

service.signToken(header, payload)

Instance method that uses the privateKey provided in the constructor to sign a token.

service.verifyToken(token)

Instance method that uses the publicKey provided in the constructor to verify a token.