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

swiftclip

v1.0.4

Published

Minimal, hyper-fast terminal clipboard. The official CLI for SwiftClip.

Downloads

200

Readme

SwiftClip Developer CLI

The SwiftClip Developer CLI is the official terminal companion for SwiftClip, the hyper-fast, secure, and account-free clipboard designed for moving text and files instantly.

This CLI gives Premium developers the ability to bypass the browser entirely and upload application logs, deployment tokens, database dumps, and environment variables securely straight from their server terminal.

Key Features

  • ⚡️ Instant Generation: Upload files or strings directly from the command line and receive a 4-digit fetch code instantly.
  • 🛡️ End-to-End Encryption: By passing a password flag, the CLI natively chunks and mathematically encrypts your files directly on your computing hardware before they ever touch the network mapping back to the browser.
  • 🔥 Burn After Reading: Securely configure payloads to be permanently wiped from the Cloudflare R2 bucket and KV storage immediately upon first access.

Getting Started

You do not need to globally install the package. You can run it instantly using npx.

1. Authenticate

To use the CLI, you must be a SwiftClip Premium member. Navigate to your SwiftClip Dashboard, click API Key in the header, and copy your private sc_live_xxx token.

Authenticate your terminal session securely:

npx swiftclip login <YOUR_API_KEY>

(Your credential will be saved securely to ~/.swiftclip.json on your local machine).

2. Send Data

You can pass a raw string of text directly into the send command. Wrap it in quotes if it contains spaces.

npx swiftclip send "Here is my secret webhook URL"

3. Send Files

You can pass the absolute or relative path to any local file (up to 10MB).

npx swiftclip send ./production-logs.txt

Security Flags

The CLI matches the browser's exact military-grade security capabilities. You can append these flags to any send command:

--burn

Immediately and permanently deletes the text/file from global storage the exact second the receiver accesses it.

npx swiftclip send ./database.dump --burn

--password <secret>

Invokes crypto-js to locally intercept your file buffer, cast it as a base64 string, and encrypt it using AES architecture with your provided password. The server has fundamentally zero-knowledge of the payload.

npx swiftclip send "Super secret string" --password mysecurepassword123

(You can also use both flags simultaneously).


Receiving

Every successful command will instantly return a 4-digit code in your terminal:

🎉 Success! Your secure code is: 1234
🌐 Open https://swiftclip.io/c/1234 to fetch it.

You can walk over to any browser, navigate to the URL, or simply punch the code into the SwiftClip homepage to decrypt and download your payload.

Happy shipping! 🚀