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

hv-audit

v1.0.9

Published

A production-ready CLI tool to audit client Web SDK integrations entirely rule-based without AI. It scans frontend web files and backend code for the HyperVerge Web SDK implementation and highlights potential integration issues based on strict guidelines.

Readme

HyperVerge Web SDK Integration Audit CLI

A production-ready CLI tool to audit client Web SDK integrations entirely rule-based without AI. It scans frontend web files and backend code for the HyperVerge Web SDK implementation and highlights potential integration issues based on strict guidelines.

Installation

You can link this package locally to use the command immediately:

npm link

Usage

Navigate to any client project directory (containing HTML, JS, or Backend files) and run the scanner:

hyperverge-audit scan

The scan is completely local, takes less than a few seconds, and provides a comprehensive score and audit report.

Publishing to NPM

To publish this tool to the NPM registry so anyone can run npx hyperverge-audit scan, follow these steps:

  1. Login to NPM Open your terminal and authenticate:

    npm login

    You'll be prompted for your username, password, and email.

  2. Verify Package Details Ensure package.json contains the correct name (e.g., "name": "hyperverge-audit") and a unique version (e.g., "version": "1.0.0"). Note: The package name hyperverge-audit must be unique on the npm registry. If it is taken, you may need to publish under a scope (e.g., @your-username/hyperverge-audit).

  3. Publish the Package

    npm publish

    For a scoped public package:

    npm publish --access public
  4. Running via NPX Once published, users can instantly run the tool without globally installing it:

    npx hyperverge-audit scan

Development

  • Rule Engine: Rules are strictly maintained in rules/webRules.json. Add or modify regexes and identifiers here.
  • Scanners: scanners/webScanner.js and scanners/backendScanner.js read the specific file extensions iteratively.
  • Formatter: formatter/outputFormatter.js controls the beautiful terminal output.