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

@oalacea/daemon

v0.6.4

Published

AI-powered automated test generation and remediation for web applications

Readme

Daemon

License: MIT GitHub release CI

AI-powered automated test generation and remediation for web applications.

Quick Start

# From your project directory
npx --yes @oalacea/daemon@latest

First run installs the testing toolkit (~500 MB Docker image, takes 2-3 minutes).

What You Need

  • Docker - Install
  • AI coding agent - Claude Code, Cursor, Windsurf, Aider, Codex...

Features

| Category | Features | |----------|----------| | Unit Tests | Components, hooks, utils, validators, stores | | Integration Tests | API routes, database operations (with transaction rollback) | | E2E Tests | User flows, form interactions, navigation (Playwright) | | Backend Performance | API load testing (k6), DB query benchmarks | | Frontend Performance | Core Web Vitals, LCP, FID, CLS (Lighthouse) | | Dependency Analysis | TanStack Router, React Query, Prisma, Zustand, React Compiler |

How It Works

  1. Analyze - Auto-detects your framework, database, and existing tests
  2. Generate - Creates tests based on your code patterns
  3. Execute - Runs tests inside Docker container
  4. Fix - Analyzes failures and applies corrections
  5. Report - Provides comprehensive coverage and performance report

Included Tools

The Docker toolkit includes:

| Category | Tools | |----------|-------| | Testing | Vitest, @testing-library/react, @testing-library/vue, @testing-library/svelte, @solidjs/testing-library, happy-dom | | E2E | Playwright (Chromium) | | Backend Performance | k6 (load testing) | | Frontend Performance | Lighthouse (Core Web Vitals) | | Utilities | supertest, MSW, @prisma/cli |

Framework Support

| Framework | Detection | Status | |-----------|-----------|--------| | Next.js | ✅ | Full support | | Remix | ✅ | Full support | | SvelteKit | ✅ | Full support | | Nuxt | ✅ | Full support | | Astro | ✅ | Full support | | Gatsby | ✅ | Full support | | Vite | ✅ | Full support | | Solid | ✅ | Full support | | Vue | ✅ | Full support | | Svelte | ✅ | Full support | | Angular | ✅ | Full support | | React Native | ✅ | Basic support | | Express | ✅ | Full support | | NestJS | ✅ | Full support |

Output Example

✓ Unit Tests: 45 created, 42 passing, 3 fixed
✓ Integration: 12 created, 12 passing
✓ E2E: 8 created, 7 passing, 1 requires manual review
✓ Backend Performance: API p95 = 145ms (PASS)
✓ Frontend Performance: Lighthouse 85/100 (PASS)
  - LCP: 2.1s ✓ (target: <2.5s)
  - FID: 56ms ✓ (target: <100ms)
  - CLS: 0.05 ✓ (target: <0.1)
✓ Dependencies: 3 improvements suggested

## Summary
Total Tests: 245
Passing: 238
Failing: 2 (requires manual review)
Coverage: 84%

Safety

  • Always use transaction rollback for database tests
  • Never modify production data
  • Git integration for safe rollbacks
  • Non-destructive testing modes available

Troubleshooting

Rebuild toolkit image

docker rm -f daemon-tools
docker rmi daemon-tools
npx --yes @oalacea/daemon@latest

Run specific test

docker exec daemon-tools npm test -- Button.test.ts

Debug test

docker exec daemon-tools npm test -- Button.test.ts --reporter=verbose

Run Lighthouse audit

# Quick performance check
docker exec daemon-tools npx lighthouse http://host.docker.internal:3000 --output=json --output=html

# Mobile audit
docker exec daemon-tools npx lighthouse http://host.docker.internal:3000 --form-factor=mobile

# All categories
docker exec daemon-tools npx lighthouse http://host.docker.internal:3000 --only-categories=performance,accessibility,best-practices,seo

Related

  • Guardian - Security testing package: npx @oalacea/guardian

License

MIT - Use at your own risk.

Credits

Inspired by the need for comprehensive automated testing in modern web development.