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

node-drop-cli

v1.2.9

Published

Fast private file sharing across devices through your local network

Downloads

4,353

Readme

node-drop-cli

Transfer files across your local network without cloud uploads, external accounts, app installations, or operating system restrictions.


Highlights

  • Zero-Config Transfers: Streams directly over your Local Area Network (LAN) with no cloud relay, accounts, or tracking.
  • Bi-Directional: Send from Desktop to Mobile or Mobile to Desktop seamlessly.
  • Dynamic On-Screen QR Codes: Dropping a file into your desktop browser generates a high-contrast QR code on-screen for fast phone scanning.
  • Automatic Browser Launch: Automatically opens the local transfer dashboard in your default browser on startup.
  • Collision-Safe Writes: Automatically increments filenames to prevent overwriting or truncating local files.
  • Format Agnostic: Transfers photos, 4K video, zip archives, documents, and multi-gigabyte binaries via native Node.js streams.

Quick Start

Run instantly without installing:

npx node-drop-cli

Or install globally:

npm install -g node-drop-cli

Usage

1. Receive Files (Default Dashboard Mode)

Start the receiver in your terminal:

node-drop-cli
  • Launches the web dashboard in your default browser.
  • Displays an ASCII QR code in your terminal.
  • Scan the QR code with your mobile camera to upload photos, videos, or documents directly to your computer.
  • Drag and drop files into the desktop dashboard to instantly generate a download QR code for other devices.

2. Custom Output Directory

Direct where incoming files should be saved on your filesystem using -d or --dir:

# Save to Downloads folder using -d
node-drop-cli -d ~/Downloads

# Save to Desktop using --dir
node-drop-cli --dir ~/Desktop

3. Send a File Directly

Share a specific file directly from your terminal:

node-drop-cli presentation.pdf
# or
node-drop-cli ~/Videos/render_4k.mov

Scan the terminal QR code from any device on your local network to start downloading the file immediately.


Options & Flags

| Flag | Shorthand | Description | | :--- | :--- | :--- | | --dir <path> | -d | Sets the target directory where files are saved. | | --no-open | | Disables automatically opening the default desktop browser. |

# Example: Headless mode saving to Downloads
node-drop-cli --no-open -d ~/Downloads

Requirements

  • Node.js: v18.0.0 or higher
  • Network: Connected devices must be on the same local network or subnet.

License

MIT