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

@sklyerx/stash

v1.0.2

Published

A terminal-based encrypted link manager

Readme

Stash

A terminal-based link manager with an encrypted database. Save URLs into organized collections, tag them, give them aliases, download them locally — all from a simple command prompt.

Your data lives in ~/.stash/stash.db, encrypted with SQLCipher behind a password you set on first run. Nothing leaves your machine.


Stash terminal screenshot


Features

  • Encrypted at rest — SQLCipher-backed SQLite with a password you control
  • Collections — group links into named buckets (youtube-dev, articles, gym, whatever)
  • Aliases & tags — give links human names and searchable labels
  • Local downloads — pull media directly via yt-dlp with a progress bar
  • Full-text search — query across URLs, aliases, and tags in one shot
  • Import / Export — portable JSON format to back up or migrate your data
  • Pagination — browse large collections page by page without the noise

Installation

npm install -g @sklyerx/stash

Then just run:

stash

Requirements


Getting Started

# Install dependencies
pnpm install

# Run
npx tsx src/index.ts

On first launch you'll be asked to set a password. Don't lose it — the database is unreadable without it.


Commands

Collections

| Command | Description | |---|---| | NEWC <collection> | Create a new collection | | DELC <collection> | Delete a collection and everything in it | | LSC | List all collections | | LS <collection> | List all links inside a collection |

Links

| Command | Description | |---|---| | SAVE <collection> [alias] [tags] [#ops] <url> | Save a URL | | DEL <collection> <#alias \| %index> | Delete a link by alias or index | | OPEN <collection> <#alias \| %index> | Open a link in the browser | | OPENL <collection> <#alias \| %index> | Open a locally downloaded file | | SEARCH "<query>" | Search across all links by URL, alias, or tags |

Data

| Command | Description | |---|---| | EXPORT | Export all data to a JSON file on the Desktop | | IMPORT <path> | Import a previously exported JSON file | | FLUSHALL | Delete all collections and links (keeps the database) | | WIPE | Nuke everything and start fresh |

Other

| Command | Description | |---|---| | HELP | Show the full command reference | | CLEAR | Clear the screen | | EXIT / BYE | Close Stash |


SAVE Syntax

SAVE <collection> ["alias"] [tag,tag,...] [#operation] <url>
  • Alias — must be wrapped in double quotes
  • Tags — comma-separated words, no spaces
  • Operations#download pulls the media locally via yt-dlp

Examples:

SAVE articles https://example.com/post

SAVE articles "Interesting Post" https://example.com/post

SAVE articles "Interesting Post" programming,tools https://example.com/post

SAVE videos "Cool video" #download https://www.youtube.com/watch?v=dQw4w9WgXcQ

Targeting Links

When commands need a specific link, you can refer to it by alias or index:

# By alias (prefix with #)
OPEN articles #Interesting-Post

# By row index (prefix with %)
OPEN articles %3

Search

Search runs a LIKE match across URL, alias, and tags — across every collection at once:

SEARCH "minecraft"
SEARCH "gym"
SEARCH "programming"

Results show the collection name, alias, URL, and tags in a table.


Data & Privacy

  • Database: ~/.stash/stash.db
  • Downloads: ~/.stash/downloads/
  • Exports land on your Desktop as output-<timestamp>.json

Everything is local. There's no sync, no account, no telemetry.


License

MIT