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

streamshare-cli

v3.3.3

Published

A raw Node.js tool for Bi-directional file sharer over local network

Readme

StreamShare Ultimate 🚀

The Zero-Dependency, Cross-Platform AirDrop Clone for Developers.

Instantly stream files, watch videos, and transfer data between your computer and mobile devices over Wi-Fi. Built entirely with Raw Node.js (No Express, No Socket.io) to demonstrate high-performance system engineering.

License Node Version Size

❓ Why Should You Use This?

Most file-sharing CLI tools (like http-server or serve) are "Read-Only." They let you download a file to your phone, but they don't help you get that photo from your phone to your computer.

StreamShare is different because:

  1. It's Bi-Directional: You can Drag & Drop files from your phone to upload them back to your computer.
  2. It's a Media Server: You don't need to download a 2GB movie to watch it. StreamShare streams it instantly to your browser.
  3. It's Smart: You don't need to type file extensions. Type streamshare start movie and it finds movie.mp4.

🆚 How is it different from others?

| Feature | 🚀 StreamShare | 📦 http-server | 🍏 AirDrop | | :--- | :---: | :---: | :---: | | Dependencies | 0 (Zero) | 25+ | N/A | | Video Streaming | Yes (Seek Support) | No | Yes | | Upload to Host | Yes (Drag & Drop) | No | Yes | | Cross-Platform | Yes (Win/Mac/Linux) | Yes | No (Apple Only) | | Setup Time | Instant | Instant | Instant |

✨ Key Features

  • ☁️ Universal AirDrop: A beautiful, responsive Web UI that works on iOS, Android, and Desktop.
  • 🎬 In-Browser Streaming: Watch videos (.mp4, .mkv) immediately with a Netflix-style player. Supports seeking (rewind/fast-forward) using HTTP Range Requests.
  • 🧠 Smart Path Resolution: Hate typing extensions? Just type the filename (e.g., resume), and the tool auto-detects resume.pdf.
  • 📱 Instant Connect: Generates a QR Code on your screen. Just scan to connect—no typing IP addresses.
  • 🤖 Auto-Port Detection: Never crashes because "Port 3000 is in use." It automatically finds the next free port.
  • ⚡ Zero Dependencies: Built using only standard Node.js libraries (http, fs, net, child_process).

📦 Installation

You can install it globally to use it repeatedly, or run it once using npx.

Option A: Global Install (Recommended)

npm install -g streamshare-cli

Option B: Run Once (No Install)

npx streamshare-cli start myvideo.mp4

How to Use Once installed, simply type streamshare start followed by what you want to do.

  1. Share a Single File Great for quickly sending a document or video to your phone.

Bash

streamshare start movie.mp4
  1. Share Multiple Files You can list as many files as you want.

Bash

streamshare start resume.pdf vacation.jpg song.mp3
  1. Smart Selection (No Extensions) Don't remember if it's .jpg or .png? Just type the name!

Bash

# Automatically finds 'photo.png' or 'photo.jpg'
streamshare start photo
  1. Receive Mode (Upload Only) Want to send photos from your phone to your computer? Run the command without any files.

Bash

streamshare start

Scan the QR code with your phone.

Tap the "Drop Zone" on your phone screen.

Select your photos/videos.

Result: They instantly appear in your terminal's current folder!

Screenshots

  • StreamShare running in the terminal:

StreamShare terminal screenshot

  • Mobile UI (scan QR & upload):

StreamShare mobile UI