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

hourshare

v1.0.3

Published

Hour Share — Local file & text sharing via QR (CLI wrapper)

Readme

Stars Forks Downloads License Platform


Why Hour Share?

Transferring files between devices on the same local network is unnecessarily difficult:

  • Finding IP addresses and typing them manually on a phone is error-prone.
  • Cloud storage or WhatsApp requires internet and an account.
  • USB cables are overkill for quick, one-time file transfers.

Hour Share solves this: launch the CLI, scan the QR code, and share files or text instantly - password-protected and auto-expiring after 60 minutes.

| | | |---|---| | ⚡ Instant Connect | Scan QR, opens directly on your phone. No more typing IP addresses. | | 🔒 Password Protected | Every bundle is secured with bcrypt password hashing. | | 📱 No Internet Required | Works entirely over local Wi-Fi. Zero data leaves your network. | | ⏰ Auto-Expire | Files and text delete automatically after 60 minutes. |


Key Features

| Feature | Status | Description | | :--- | :---: | :--- | | QR Connect | ✅ | Scan from phone, opens directly in browser | | File Upload | ✅ | Drag & drop or select files. 100 MB limit per file | | File Download | ✅ | One-click download, password-gated | | Text Share | ✅ | Paste text, code snippets, or links | | Password Protection | ✅ | bcrypt per bundle and per group | | Auto-Expire | ✅ | Background sweeper removes expired items every 60 minutes | | Group Chat | ✅ | Real-time file and text sharing within a group | | i18n (EN/ID/CN/JP) | ✅ | 4 languages toggle in the header | | Dark/Light Mode | ✅ | Theme toggle in header, persistent preference | | Auto Start | ✅ | OS-level auto-start (systemd / LaunchAgent / schtasks) |


Tech Stack

| Layer | Technology | |-------|-----------| | CLI | Node.js (vanilla, zero dependencies) | | Backend | Python 3.10+, Flask 3, bcrypt, qrcode[pil], Pillow | | Frontend | Vanilla HTML/CSS/JS (no build step), inline SVG icons | | Storage | File-based JSON (no database) | | Distribution | npm global package + GitHub repository | | License | MIT |


Quick Start

Install the CLI globally (recommended):

npm install -g hourshare
hourshare
  1. Run hourshare in your terminal.
  2. Select Start from the menu:
========================================
  Hour Share (v1.0.3)
  🚀 Server: http://localhost:10101
========================================
 ★ Start (Open in Browser)           ○ Stopped
 ☆ Auto Start (Disable)           
 ☆ Check Update (Internet Require)
 ☆ Stop                           
 ☆ Exit                           
  ↑↓ navigate · Enter select · Esc/Ctrl+C exit
  1. Open the displayed local URL (like http://localhost:10101 or your local IP) in your browser on the same device, or scan the QR code from your phone.
  2. Enter a password and share files or text. To receive, enter the same password.

Auto Start: Select Auto Start from the menu to launch the server at login.


Installation

Download from GitHub Releases or build from source:

git clone https://github.com/Curzyori/hour-share.git
cd hour-share
pip install flask bcrypt qrcode[pil] pillow

Requirements:

  • Node.js >= 18
  • Python 3.10+ (Linux, macOS, Windows)
  • pip packages: flask, bcrypt, qrcode[pil], pillow

CLI Flags

hourshare                     # Interactive menu
hourshare --port 8080          # Custom port
hourshare --daemon             # Headless mode (no menu)
hourshare --help               # Show help

API Endpoints

| Method | Path | Function | |--------|------|----------| | GET | / | Web dashboard | | GET | /api/qr | QR Code PNG | | POST | /api/send | Upload bundle (files + text + password) | | POST | /api/receive | Access bundle with password | | POST | /api/group/join | Join or create a group | | GET | /api/group/{name}/info | Group info | | POST | /api/group/{name}/send | Send to group | | GET | /download/bundle/{id}/{filename} | Download file (requires auth session) |


Preview


Support

Support this project by buying me a coffee!


License

This project is released under the MIT license - see LICENSE for full text.

Built with passion as the 21st Project of the 50 Projects Challenge by @Curzyori