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

sallysold

v0.3.2

Published

Sally Sold CLI — generate beautiful invoice PDFs from your terminal.

Readme

Sally Sold CLI

Generate beautiful invoice PDFs from your terminal.

Install

npm install -g sallysold

Requires Node 18 or newer.

Get started

  1. Sign in at sallysold.com and mint an API key at sallysold.com/settings/api-keys.
  2. Sign in:
    sallysold login
  3. Create your first invoice:
    sallysold create

The first invoice walks you through everything — business details, client, line items, template. After that, your business and clients are remembered and future invoices auto-suggest them.

API key scopes

When you mint a key, you pick one of three access levels:

| Scope | Lets you | When to pick it | | --- | --- | --- | | PDF only | sallysold generates PDFs from data you pass in directly | CI scripts that build invoices from external data | | PDF + read | pdf + read your saved business, clients, invoice history | Scripts that read your account but don't change it | | Full access (default) | Everything — also save new invoices and clients | The CLI's interactive create flow needs this |

The mint UI defaults to "Full access". Pick a narrower scope only if you want a key locked down for a specific automation.

Commands

| Command | What it does | | --- | --- | | sallysold login | Sign in with an API key | | sallysold logout | Remove the stored API key | | sallysold whoami | Show the currently signed-in account | | sallysold templates | List available invoice templates | | sallysold create | Create a new invoice (interactive) | | sallysold quick | Fast path for repeat invoicing to a saved client | | sallysold resume | Pick up an interrupted create flow where you left off | | sallysold invoices | List your invoice history | | sallysold duplicate <number> | Re-invoice a past client with one command | | sallysold open | Open the most recently generated PDF | | sallysold doctor | Run self-diagnostics (Node, config, API, key) |

create options

  • -o, --output <path> — save the PDF to a specific path (skips the save prompt; ideal for scripting)

quick

For when you've already invoiced this client before. Pick a saved client, pick a saved business, paste or type a one-line items string (e.g. "Design: 10h @ 150"), pick a net-N due date — done. Skips the long-form wizard.

sallysold quick

quick and resume accept the same -o, --output <path> flag as create.

resume

create autosaves a draft as you go. If you exit (intentionally or not), resume picks it up from the last step you completed.

sallysold resume

duplicate <invoice-number>

Looks up a past invoice by its user-facing number (e.g. INV-2026-04-001), prompts for new dates and a new invoice number, and regenerates with the same business, client, template, and line items.

sallysold duplicate INV-2026-04-001

doctor

Runs a battery of self-checks and prints a status report: Node version, config file presence and permissions, API URL reachability, and whether your stored key authenticates. Use this first when something isn't working.

sallysold doctor

Config

Your API key is stored at ~/.sallysold/config.json with 0600 permissions.

You can override the API key with an env var:

SALLYSOLD_API_KEY=sk_live_... sallysold create

For self-hosted or staging endpoints:

SALLYSOLD_API_URL=https://staging.example.com sallysold create

Security

API keys are minted once and shown to you on-screen. Sally Sold stores only a sha256 hash — there's no way to recover a key after you close the modal. Lost a key? Revoke it from /settings/api-keys and mint a new one.

License

MIT