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

@dafuga01/harness

v0.1.2

Published

An opinionated CLI that helps humans and agents code in small, Rails-inspired harnesses.

Readme

Harness

Harness is an opinionated CLI for humans and coding agents. It gives projects a Rails-like structure for TypeScript: small files, focused classes, small functions, generators, specs, and static guidance that agents can query before making a change.

Commands

bun run dev -- new lib my-lib
bun run dev -- new app my-app
bun run dev -- generate model Post title:string body:text --adapter sqlite
bun run dev -- generate mailer Welcome
bun run dev -- generate resource Article
bun run dev -- info scaffolds
bun run dev -- info model
bun run dev -- info model --json
bun run dev -- audit .
bun run dev -- audit . --coverage
bun run dev -- audit . --profile app
bun run dev -- audit . --profile dapp
bun run check

Project Families

  • app scaffolds a SvelteKit-shaped application inspired by Daniel's app-template.
  • dapp audits SvelteKit dApps with Antelope or Harbor smart-contract folders.
  • lib scaffolds a Bun TypeScript package.

Harness Rules

  • One file should have one reason to change.
  • Prefer small functions and tiny classes over broad modules.
  • Generate a feature spec before implementation work.
  • Keep persistence behind adapters.
  • Give agents static, explicit instructions through harness info.
  • Use harness info scaffolds --json to inspect what each scaffold should contain.
  • Use harness audit --coverage to inspect which ecosystem adapters covered the project.
  • Generated projects use bun run check to run format checks, project checks, tests, build, and Harness audit.