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

inspectorqa-agent

v1.0.0

Published

Local tunnel agent for InspectorQA — test localhost apps without deploying

Readme

InspectorQA Agent

Local tunnel agent for InspectorQA — test localhost apps without deploying.

Quick Start

npx inspectorqa-agent --token YOUR_TOKEN --port 3000

How It Works

  1. Go to InspectorQA → Settings → Lokal Testning
  2. Copy your Tunnel Token
  3. Run the agent pointing to your local app's port
  4. Use InspectorQA Playground to test your localhost app

The agent creates a secure WebSocket tunnel between your machine and InspectorQA's servers. When InspectorQA needs to test your app, requests are forwarded through this tunnel to your local machine.

Options

| Flag | Short | Description | Required | |------|-------|-------------|----------| | --token | -t | Your tunnel token from Settings | ✅ | | --port | -p | Local port to proxy to | ✅ | | --server | -s | Custom server URL | ❌ | | --help | -h | Show help | ❌ | | --version | -v | Show version | ❌ |

Security

The agent is designed with security as a priority:

  • localhost only — Only proxies to 127.0.0.1, never to external addresses
  • Port locked — Only connects to the port you specify
  • Path traversal blocked../ and similar attacks are rejected
  • Header sanitization — Cookies and auth headers are stripped from responses
  • Body size limit — Max 10 MB per request/response
  • Encrypted transport — All communication uses WSS (WebSocket Secure)
  • Auto-disconnect — Tunnel closes after 30 minutes of inactivity

Examples

# React app on port 3000
npx inspectorqa-agent --token iqa_abc123... --port 3000

# Next.js on port 3001
npx inspectorqa-agent -t iqa_abc123... -p 3001

# Custom backend on port 8080
npx inspectorqa-agent -t iqa_abc123... -p 8080

Requirements

  • Node.js 18 or later
  • An InspectorQA account with a tunnel token

License

MIT © ElTigre