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

yoop

v0.1.2

Published

Cross-platform local network file sharing - transfer files between devices on the same network using simple codes

Readme

Yoop

Cross-Platform Local Network File Sharing

Yoop enables seamless peer-to-peer file transfers over local networks using simple, time-limited codes. Unlike cloud-based solutions, all data stays on your local network, ensuring privacy, speed, and zero bandwidth costs.

Installation

# npm
npm install -g yoop

# pnpm
pnpm add -g yoop

# yarn
yarn global add yoop

# bun
bun add -g yoop

Quick Start

Share Files

# Share a single file
yoop share document.pdf

# Share multiple files and folders
yoop share photos/ videos/ notes.md

# Share with custom expiration
yoop share project.zip --expire 10m

Receive Files

# Receive using the 4-character code
yoop receive A7K9

# Receive to specific directory
yoop receive A7K9 --output ~/Downloads/

# Batch mode (auto-accept)
yoop receive A7K9 --batch

Clipboard Sharing

# Share current clipboard content
yoop clipboard share

# Receive clipboard content
yoop clipboard receive A7K9

# Bidirectional clipboard sync
yoop clipboard sync

Features

  • Cross-platform: Windows, Linux, and macOS
  • No account required: Zero configuration, no cloud dependency
  • Simple 4-character codes: Easy discovery without IP addresses
  • Private & secure: TLS 1.3 encryption, data never leaves local network
  • Fast transfers: Chunked transfers with verification
  • Resume capability: Interrupted transfers resume automatically
  • Web interface: Browser-based UI for devices without CLI

CLI Commands

yoop share <files...>           # Share files/folders
yoop receive <code>             # Receive with code
yoop clipboard share            # Share clipboard
yoop clipboard receive <code>   # Receive clipboard
yoop clipboard sync [code]      # Bidirectional sync
yoop scan                       # Scan for active shares
yoop web                        # Start web interface
yoop diagnose                   # Network diagnostics
yoop history                    # View transfer history

How It Works

  1. Sender shares files and gets a 4-character code (e.g., A7K9)
  2. Receiver enters the code on their device
  3. Discovery via UDP broadcast + mDNS on local network
  4. Transfer over TLS 1.3 encrypted connection
  5. Resume automatic resumption of interrupted transfers

Supported Platforms

| Platform | Architecture | |----------|--------------| | Linux | x64, ARM64 | | macOS | x64 (Intel), ARM64 (Apple Silicon) | | Windows | x64 |

Links

License

MIT OR Apache-2.0