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

@blackridder22/vault

v1.0.0

Published

Minimal local project backup CLI.

Downloads

23

Readme

Vault

Minimal local project backup CLI.

Vault copies a development project into a hidden local folder:

~/.vault/projects/<project-name>/

It is not Git. It does not create version history, archives, cloud backups, or restore workflows.

Installation

npm install -g @blackridder22/vault

For local development from this repository:

npm install
npm run build
npm link

Commands

Backup the current project:

vault --backup
vault -b

Backup a specific project:

vault --backup /path/to/project
vault -b /path/to/project

List saved projects:

vault --list
vault -l

Delete a saved project:

vault --delete sonoa-search

Show help:

vault --help
vault -h

Show version:

vault --version
vault -v

How Backups Work

When you run vault -b, Vault uses this source:

  1. The path passed after --backup or -b, if provided.
  2. The Git root from git rev-parse --show-toplevel, if the current folder is inside a Git repo.
  3. The current folder from process.cwd().

The project name is the source folder name. For example:

/Users/me/projects/sonoa-search

is saved to:

~/.vault/projects/sonoa-search/

If a backup with the same project name already exists, Vault overwrites it. It first copies the project into ~/.vault/tmp/<project-name>-tmp. Only after that copy succeeds does it remove the previous backup and move the temporary copy into ~/.vault/projects/<project-name>/.

Ignore Rules

Vault respects the project's root .gitignore.

Vault also uses a global ignore file:

~/.vault/config/ignore.txt

If that file does not exist, Vault creates it automatically with default rules for common folders and files such as .git/, node_modules/, .next/, dist/, build/, .env, logs, and caches.

The ignore file supports gitignore-style rules, including ! negation rules.