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

sounding

v0.0.2

Published

Testing framework for Sails applications and The Boring JavaScript Stack.

Readme

Sounding

Sounding is a testing framework for Sails applications and The Boring JavaScript Stack.

It is designed to be:

  • a Sails hook first
  • a CLI second
  • powered by the native Node.js test runner
  • integrated with Playwright for browser testing
  • elegant for helper, endpoint, JSON API, Inertia, mail, and browser trials

The canonical Sails-native surface is:

  • optional config/sounding.js when you need overrides
  • sails.sounding
  • sails.helpers.user.signupWithTeam(...) inside trials
  • get('/api/issues') or sails.sounding.request.get('/api/issues') inside endpoint-style trials
  • await auth.login.withPassword('[email protected]', page, { password: 'secret123' }) inside browser trials
  • await auth.request.withPassword('[email protected]', { password: 'secret123' }) inside request trials
  • request helpers default to Sails virtual requests powered by sails.request()
  • Inertia-style visits can use visit('/pricing') and partial reload options like { component, only }
  • a trial can opt into stricter parity with test('...', { transport: 'http' }, ...)
  • any trial can also scope a request client with sails.sounding.request.using('http')

Sounding also owns its own built-in world engine, so the same package can:

  • define factories under tests/factories
  • define scenarios under tests/scenarios
  • load named worlds for endpoint and browser trials
  • capture outgoing mail by wrapping sails.helpers.mail.send and storing normalized messages in sails.sounding.mailbox

The default configuration story is intentionally calm:

  • Sounding disables its hook automatically when Sails runs in production
  • set sounding.enableInProduction = true only for controlled production-like environments such as staging
  • auth conventions auto-detect User/userId and Creator/creatorId, with sounding.auth available for overrides
  • Sounding manages a temporary sails-sqlite datastore by default
  • managed SQLite artifacts live under .tmp/db
  • the default datastore identity is default
  • browser projects start with desktop
  • inherit remains available when an app already has a serious test datastore story

This repository starts with docs-driven product research and the first hook/runtime scaffolding for that vision.

See RESEARCH.md.