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

@dujaunpaul/qass

v0.1.1

Published

QA + Security Scanner for vibe-coded applications. Your AI writes code. QASS catches what it got wrong.

Downloads

170

Readme

QASS

QA + Security Scanner for vibe-coded apps.

Your AI writes code. QASS catches the security holes, broken flows, and silent failures it left behind — before your users do. Works with Cursor, Windsurf, Copilot, and any AI editor.

Install

npm install -g qass

Or run without installing:

npx qass scan --project .

Quick Start

# Initialize config in your project
qass init --project .

# Run a full security scan
qass scan --project . --full

# Run tests based on your latest git changes
qass test --project . --diff HEAD

What It Catches

Free

  • 7 static security rules — missing auth middleware, SQL/NoSQL injection, hardcoded secrets, XSS vectors, CORS misconfiguration, rate limiting gaps, dependency CVEs
  • Basic smoke crawl — page load verification, console error detection
  • Endpoint discovery — auto-detects Express routes
  • Git diff analysis — only scans what changed
  • AI-readable reports — structured for your AI editor to read and fix

Pro

  • Full smoke crawl — clicks every button, fills every form, catches silent failures
  • Visual regression — pixel-diff screenshots against baselines
  • Flow testing — multi-step user journeys defined in YAML
  • API testing — auth, plan gating, response validation with Supabase support
  • Dynamic security probing — tests live endpoints for error disclosure, missing headers

How It Works With AI Editors

QASS generates a rule file that tells your AI editor to run tests after every code change:

# Generate a Cursor Rule
qass cursor-rule --project .

# Creates .cursor/rules/qass.mdc

The rule instructs your AI to:

  1. Run qass test after making changes
  2. Read the report at .qass/results/latest.md
  3. Fix every finding (each has exact file, line, and fix instructions)
  4. Re-run until clean
  5. Only then tell you it's done

This works with any AI editor that can run terminal commands — Cursor, Windsurf, Copilot, Bolt, Lovable.

Configuration

QASS uses a .qass/config.yaml file in your project root:

project:
  name: my-app

services:
  api:
    framework: express
    entry: src/server.ts
    port: 3001
  frontend:
    framework: nextjs
    port: 3000

security:
  static_rules:
    - auth-middleware
    - input-sanitization
    - secrets-scan
    - xss-vectors
    - config-audit
    - rate-limit-audit
    - dep-audit
  severity_threshold: LOW

paths:
  api_routes: "src/**/*.routes.ts"
  middleware: "src/middleware/**"
  frontend_pages: "app/**/page.tsx"
  components: "components/**/*.tsx"

Run qass init to generate a default config.

CLI Commands

| Command | Description | |---------|-------------| | qass init | Initialize .qass/config.yaml in your project | | qass scan | Run security scan only | | qass test | Run full test suite (security + API + E2E + unit) | | qass discover | List discovered endpoints, pages, and accounts | | qass cursor-rule | Generate AI editor rule file | | qass activate <key> | Activate a Pro/Team license | | qass status | Show current license and plan info |

Reports

QASS generates reports in two formats:

  • .qass/results/latest.json — machine-readable, for programmatic use
  • .qass/results/latest.md — human/AI-readable, with fix instructions

Each finding includes:

#### MEDIUM: input-sanitization — routes/contacts.ts:6
**Issue**: Unsanitized user input passed to .filter()
**Fix**: Use a sanitization function: const q = sanitize(req.query.q);

Requirements

  • Node.js >= 20.11.0
  • Git (for diff analysis)
  • Playwright (optional, for E2E testing): npm i -D playwright
  • Vitest (optional, for unit test generation): npm i -D vitest

License

Proprietary. See LICENSE for details.

Free tier available. Pro and Team require a license key — see qass.dev for pricing.