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

@shhhhhhh-automations/shhhhhhh-automation

v0.1.5

Published

Quiet operations. Loud automation. Self-hosted platform.

Readme

Shhhhhhh Self-Hosted

Quiet operations. Loud automation.

Shhhhhhh is a self-hosted automation platform featuring a fluid, neon-lit workflow canvas. It's designed for developers and automation enthusiasts who want powerful automation with an unobtrusive, efficient feel.


[i] The Self-Hosting Philosophy

Shhhhhhh is built on the principle of Local Sovereignty. Unlike SaaS automation tools, Shhhhhhh:

  • Never leaves your network: Your data, credentials, and workflow logic stay on your hardware.
  • Resource Efficient: Designed to run "quietly" in the background with minimal CPU/RAM footprint.
  • Single-File Portability: All your configuration is stored in a single SQLite database.

[#] Quick Start (NPX)

The fastest way to get started is using npx. No installation required if you have Node.js.

npx @shhhhhhh-automations/shhhhhhh-automation

[i] What happens?

  • It creates a hidden directory ~/.shhhhhhh in your user home for the database.
  • It starts the server on http://localhost:3000.

[#] Docker Deployment (Recommended)

The most robust way to run Shhhhhhh for long-term use. It ensures the environment is consistent and simplifies updates.

[!] Requirements:

  • Docker and Docker Compose.

Deployment Steps:

  1. Create a directory for your deployment: mkdir shhhhhhh-deploy && cd shhhhhhh-deploy.
  2. Create a docker-compose.yml file:
services:
  shhhhhhh:
    image: ghcr.io/your-username/shhhhhhh-selfhosted:latest
    container_name: shhhhhhh
    restart: unless-stopped
    ports:
      - "3000:3000"
    volumes:
      - ./data:/data
    environment:
      - PORT=3000
      - SHHHHHHH_DATA_DIR=/data
      - NODE_ENV=production
  1. Start the container:
docker compose up -d

[!] Advanced Configuration

Shhhhhhh is configured entirely via environment variables.

| Variable | Description | Default | |----------|-------------|---------| | PORT | The port the server listens on | 3000 | | SHHHHHHH_DATA_DIR | Directory for the SQLite database | ~/.shhhhhhh (NPX) or /data (Docker) | | DATABASE_URL | Full path to the SQLite DB file | $SHHHHHHH_DATA_DIR/shhhhhhh.db | | NODE_ENV | Environment mode | production |


[i] Maintenance & Backups

Backing Up: Since Shhhhhhh uses SQLite, backups are trivial. Simply copy the shhhhhhh.db file from your data directory while the server is running.

Updating:

  • For Docker: docker compose pull && docker compose up -d
  • For NPX: npx shhhhhhh-automation@latest

[!] Security Recommendations

  1. Reverse Proxy: Always use a reverse proxy like Nginx or Caddy with TLS (HTTPS) enabled.
  2. Authentication: Add an authentication layer at the proxy level for internet exposure.
  3. Firewall: Limit access to authorized IPs.

[?] Troubleshooting

  • Database Locked: Ensure only one instance is accessing the data directory.
  • Port Conflict: Use PORT=3001 to use a different port.
  • Permission Denied: In Docker, check host permissions for the ./data volume.

[i] Development

If you want to contribute or build from source:

Prerequisites:

  • Bun (v1.1+)
  • Node.js (v18+)

Commands:

# Install dependencies
npm install

# Build everything
npm run build

# Start the unified server
npm start

[i] Design Philosophy

  • Quiet Power: Unobtrusive UI that performs complex tasks.
  • Organic-Tech Aesthetic: Depth created via Aurora Mesh Gradients and photographic grain texture.
  • Fluidity: Smooth transitions on the workflow canvas.

License

MIT