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

lazytesting

v0.2.6

Published

AI-driven test automation that plugs into Claude Code via MCP. Zero setup, zero test authoring. You're too lazy to write tests — so let the tool do it.

Readme

Lazy Testing

AI-driven test automation for Claude Code. Zero setup. Zero test files. You're too lazy to write tests, so let the tool handle it.

What is this?

An MCP server that gives Claude the power to explore, understand, and test your web apps in a real browser. No config files, no page objects, no test scripts. You say "test my app" and it does the rest while you kick back.

Install

npm install -g lazytesting

Playwright's Chromium gets installed automatically. That's it. Go grab a coffee.

Hook it up to Claude Code

Add this to your Claude Code MCP config:

{
  "mcpServers": {
    "lazytesting": {
      "command": "lazytesting"
    }
  }
}

Or if you installed locally:

{
  "mcpServers": {
    "lazytesting": {
      "command": "node",
      "args": ["./node_modules/.bin/lazytesting"]
    }
  }
}

How it works

Talk to Claude. That's the whole workflow. Let the tool do the heavy lifting.

You:    "Test my app at localhost:3000"
Claude: explores the app, maps every page, detects auth, infers what kind of app it is
Claude: "I found a login page, a dashboard, and a settings panel.
         Got test credentials? Any areas I should focus on?"
You:    "[email protected] / password123. Focus on the dashboard."
Claude: runs real browser tests, screenshots every step, catches errors
Claude: "3 tests run. 2 passed. Delete button doesn't actually delete."

No test files were written. No test files were even thought about.

Tools

Four MCP tools. That's all you need.

| Tool | What it does | |------|-------------| | explore | Crawl an app. Map pages, forms, buttons, links. Detect auth. Take screenshots. | | test | Run tests from plain English or explicit steps. Real browser. Real screenshots. | | context | Teach it about your app. Credentials, focus areas, known issues. Persists across sessions. | | status | See what it knows. Pages mapped, test history, pass rates. |

Why Lazy Testing?

  • Zero setup — No test files. No config. No page objects. Just a URL.
  • Claude is the brain — The tool extracts everything, Claude does the thinking. You do nothing.
  • Self-discovering — It explores your app and figures out what to test on its own.
  • Persistent memory — Learns your app over time. Gets smarter every session.
  • No port conflicts — Uses stdio, not HTTP. Stays completely out of your way.
  • Real browser — Playwright under the hood. Real clicks on real elements. Not mock testing.

Requirements

  • Node.js 18+
  • Claude Code with MCP support

Data

Project data lives at ~/.lazytesting/projects/. Screenshots, app maps, test results — all there. Delete a project folder to forget about it.

License

MIT