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

@hiverra/portal

v0.10.1

Published

Hiverra Portal CLI

Downloads

20

Readme

Portal

Portal started as a personal way to move files from phone to computer. It is now a CLI tool designed to make file transfers effortless.

Overview

Portal (Hiverra Portal) is a local-first file transfer tool built for simple, reliable sharing across devices. Today it focuses on CLI ↔ CLI transfers. Browser flows are planned.

What Portal Does (Today)

  • CLI ↔ CLI transfers over local networks
  • Files and folders (recursive sends supported)
  • Discovery mode with identity verification
  • Direct IP mode for quick sends
  • Transfer history with export and cleanup
  • Optional no-compress mode (tar only)

Planned

  • CLI ↔ Browser
  • Browser ↔ CLI

Who It’s For

Portal is for anyone who wants a fast, local, no-fuss way to move files between devices without relying on external services. It is ideal for personal workflows and small team transfers on the same network.

Install

Release Installers (Recommended)

Shell script (Linux/macOS)

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Spectra010s/portal/releases/download/v0.9.0/hiverra-portal-installer.sh | sh

PowerShell (Windows)

powershell -ExecutionPolicy Bypass -c "irm https://github.com/Spectra010s/portal/releases/download/v0.9.0/hiverra-portal-installer.ps1 | iex"

npm (prebuilt binaries)

npm install [email protected]

Android / Termux

curl -LsSf https://github.com/Spectra010s/portal/releases/download/v0.9.0/hiverra-portal-android-installer.sh | sh

Direct download

  • Download the release asset for your OS from GitHub Releases.

Build From Source

  • Install Rust
cargo build -p hiverra-portal

Quick Start

  1. Run setup
portal config setup
  1. On receiver
portal receive
  1. On sender
portal send path/to/file

Usage Examples

Start receiver

portal receive

Send via discovery

portal send --to <username> path/to/file

Send via direct IP

portal send --address <ip> --port <port> path/to/file

Send a folder (recursive)

portal send -r path/to/folder

No-compress

portal send --no-compress path/to/file

History (list + export)

portal history
portal history export --detailed --output portal_history.json

Update To update Portal:

portal update

How to Run or Use It

Portal is a command-line tool. Common commands:

Send a file Use this to send a specific file. If no file is specified, Portal will prompt you to select one.

portal send <file_path>

Send with discovery (recommended) Sends to a user by username and verifies identity.

portal send --to <username> <file_path>

Send via direct IP Use this when you already know the receiver’s IP and port.

portal send --address <IP_ADDRESS> --port <PORT> <file_path>

Receive Puts Portal into listening mode to receive files.

portal receive

Receive on a custom port

portal receive --port <PORT>

Configuration setup Interactive setup to configure username and default port.

portal config setup

Set a configuration value

portal config set <key> <value>

Show a configuration value

portal config show <key>

List current configuration

portal config list

Documentation

Author

Spectra010s

License

LICENSE

Hiverra Portal: A lightweight CLI tool to transfer files between devices locally or remotely.