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

dev-snip-cli

v1.0.4

Published

A lightning-fast, keyboard-first command-line interface for your personal code snippets.

Readme

⚡ Snip CLI

A lightning-fast, keyboard-first command-line interface for your personal code snippets.

Built for developers who want to stay in their flow state. snip allows you to save multi-line code blocks directly from your system clipboard, and uses an interactive menu to fuzzy-search your database and instantly copy the results back to your clipboard.

🛠 Built With

  • Node.js
  • Commander.js (Command-line framework)
  • Inquirer (Interactive terminal menus)
  • Clipboardy (System clipboard integration)
  • Axios (HTTP client)

📦 Installation

(Note: This CLI requires the Snippet Search backend API to be running).

Install the package globally via NPM:

npm i dev-snip-cli

⚙️ Configuration (Required)

By default, this CLI connects to http://localhost:3000. To use this tool, you must have the Snippet Search Backend running.

TODO

backend need to be hosted on a different port or a remote server, configure the CLI before starting:

snip config <url>
# Example: snip config [https://my-api.railway.app/api](https://my-api.railway.app/api)

🚀 Usage

1. Authentication

Link the CLI to your backend by saving your JWT token locally (stored safely in ~/.snippet-cli.json):

snip login <your-jwt-token>

Verify your login status:

snip whoami

2. Saving Snippets

Save a simple snippet directly from your terminal:

snip save "Git Undo" "git reset --soft HEAD~1" -l bash

Pull from Clipboard (-c):

Copy a block of code in your editor, then run this to instantly save it without fighting terminal string formatting:

snip save "My Awesome Component" -c -l javascript

Bulk Import (-b):

Copy a Markdown-style cheat sheet to your clipboard (formatted with # Title followed by the code block), and bulk-import them as individual, searchable database records:

snip save --bulk -l bash

3. Searching & Copying

Fuzzy search your entire snippet database. If multiple results are found, an interactive menu will appear. Use your arrow keys to select the best match, and the code will automatically be copied to your system clipboard!

snip search "docker"

📜 License

MIT