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

@trustdiplomas/sdk

v1.0.0

Published

The TypeScript SDK for the TrustDiplomas API that enables institutions to securely certify and manage diplomas.

Readme

TrustDiplomas™ is a free solution simplifying registrars' workloads, integrating seamlessly with existing systems, instantly verifying paper and electronic diploma authenticity & validity. Patented technology with end-to-end encryption accelerates hiring, informs users in real-time if diplomas become invalid, generates revenue for universities & colleges, and combats fraud effectively.

Usage

Documentation

The SDK documentation is available at https://api.trustdiplomas.com/doc/sdk/typescript.

Installation

npm install @trustdiplomas/sdk

Example using ES Modules

import { TrustDiplomasClient } from "@trustdiplomas/sdk";
import { join } from "node:path";

// Create a new client instance
const client = await TrustDiplomasClient.create(
  "your-api-key",
  "your-encryption-key" // it corresponds to the password of the user
);

// Certify a diploma
const diploma = {
  student: {
    firstName: "Charlotte",
    lastName: "Fletcher",
    gender: "Mrs.",
  },
  degree: {
    name: "Bachelor of Science",
    level: "Undergraduate",
    major: "Computer Science",
    instructionMode: "In-person",
  },
  graduationDate: new Date("2024-10-29"),
  issuanceDate: new Date("2024-10-29"),
};

// Optional QR code generation options
const qrCodeOptions = {
  outputPath: join(import.meta.dirname, "output.jpg"),
  // Optional: Your institution's logo (128x128px)
  logoPath: join(import.meta.dirname, "custom-logo.png"),
};

const result = await client.certifyDiploma(diploma, qrCodeOptions);
console.log("Diploma certified with ID:", result.diplomaId);

// Update diploma status
await client.updateStatusDiploma(
  result.diplomaId,
  result.sha256Fingerprint,
  "suspended"
);

Software License Agreement

Copyright © 2025 TrustDiplomas™ All Rights Reserved

This software, including its associated documentation, constitutes the proprietary and confidential property of TrustDiplomas™. It is made available exclusively for limited internal evaluation and non-commercial testing purposes.

Restrictions on Use

You are expressly prohibited from:

  • Modifying, altering, reverse-engineering, decompiling, or creating derivative works of the software or any part thereof;
  • Distributing, sublicensing, publishing, transmitting, transferring, or otherwise disclosing the software to any third party;
  • Using the software for any commercial purpose, unless prior written authorization has been granted by TrustDiplomas™.

Ownership and License

This software is NOT open source and is NOT licensed under any open-source license. All rights, title, and interest in and to the software remain the exclusive property of TrustDiplomas™.

Unauthorized use, reproduction, distribution, or disclosure of the software, in whole or in part, may result in both civil and criminal liability under applicable laws.

Third-Party Components

This software may include third-party open-source components. Each such component is licensed under its own applicable open-source license terms. For details, refer to the file: THIRD-PARTY-LICENSES.txt.

Contact and Licensing Requests

To inquire about licensing options or to request permission for extended or commercial use, please contact:

📧 [email protected] 🌐 https://trustdiplomas.com

By accessing, downloading, or using this software, you acknowledge and agree to be legally bound by the terms of this license agreement.

Support

For support, please contact [email protected].