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

uncoverit

v1.2.0

Published

API Client for Uncover it

Readme

Installation

npm i uncoverit

Usage

import { fetchBalance, exists, upload, staticReport } from "uncoverit";

// exported types
import { BalanceResponseType, UploadResponseType, StaticAnalysisDataType }

Fetching balance:

await fetchBalance(apiKey);

Example Response:

{
  "requests_left": 300,
  "created_at": "2026-01-26T00:31:39.381Z",
  "expiration_date": "2026-02-26T00:30:39.381Z"
}

Checking if file exists (Upload function already does this:

await exists(apiKey, file); // file can be a File, Blob or a SHA-256 hash string

Example Response:

true

Uploading a file:

await upload(apiKey, file); // file can be a File or a Blob

Example Response:

{ "blake3Hash": "8347c2669ff2a7d5a1c2e73171bec5c36e3ac5654699c20a622ebf24860255c8" }

Fetching a static analysis report:

await staticReport(apiKey, hash); // hash can be SHA-256, SHA-512 or BLAKE3

Example Response:

{
  "date": "2024-08-26T10:00:00Z",
  "blake3Hash": "8347c2669ff2a7d5a1c2e73171bec5c36e3ac5654699c20a622ebf24860255c8",
  "sha512Hash": "8b16496acb3c6671439588287940817892c8920249c4bc967072c537a826afb398d381ff654a196726c0763e129e24c4660dfa39cfc5e42ffa14eacf558af61a",
  "sha256Hash": "2c2751b069c34f810f152dd13b6c527d20d1ac6552f2ea702da1c1fb7b0c505b",
  "sha1Hash": "22dff75a842daeff1919b5fae8bcb2785193873e",
  "mD5Hash": "3e0b4724c6cb604ffef0c10dcff400de",
  "ssDeep": "3072:Xc1GZ7XaS7pNifbi+nIhROuvgGUVrYdVCQ2zrUIx0Exaa2kAHRKdey6rOaxrmKSQ:Xc1G1XJp+bzASHzwIx0tEAHREeKam",
  "fileName": "AccountGrabber.exe",
  "sizeInBytes": 270336,
  "tags": [
    {
      "name": "RAT",
      "heat": 1,
    }, {
      "name": "XWORM",
      "heat": 10,
    }
  ],
  "configs": {
    "XWORM": {
      "C2s": "example.com",
      "Ports": "8080",
      "Traffic Encryption Key": "<123456789>",
      "Mutex": "A9lWJ0tQCdsEozbm",
      "Delimiter": "<Xwormmm>",
      "Version": "XWorm V5.2",
      "Bitcoin Address": "0xfaF7bFf63a4C43d6D05eA8733911df2111c3238e",
      "Telegram Bot Token": "8120265505:AAFwq8bHiPgQsIrf26384ddYSCnMRcKVrN0",
      "Telegram Chat Id": "-4916970420",
    },
  },
  "staticAnalysisDuration": "00:00:00.0427370",
}