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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hypervms

v0.0.3

Published

P2P Virtual Machine Networks

Readme

hypervms

P2P Virtual Machine Networks. Run VMs that can communicate over encrypted peer-to-peer networks.

Requirements

  • Bare runtime
  • QEMU with qemu-system-aarch64 (ARM64) or qemu-system-x86_64
  • A qcow2 VM image (e.g., Ubuntu Minimal Cloud)

Installation

npm install
npm run build

Quick Start

# Start the daemon
hypervms daemon start

# Import a VM image
hypervms image import /path/to/ubuntu-minimal.qcow2 --name ubuntu

# Create and start a VM
hypervms vm create myvm --image ubuntu
hypervms vm start myvm

# Create a network and connect the VM
hypervms network create mynet
hypervms network connect mynet myvm

Multi-Machine Setup

Machine A (network owner):

hypervms daemon start
hypervms network create mynet
# Note the descriptor from output

hypervms vm create alice --image ubuntu
hypervms vm start alice
hypervms network connect mynet alice

Machine B (participant):

hypervms daemon start
hypervms network add <descriptor>

hypervms vm create bob --image ubuntu
hypervms vm start bob
hypervms network connect mynet bob
# Note the public key from output

Back on Machine A (add the remote peer):

hypervms network add-peer mynet <bob-public-key> --name bob

DNS Resolution

VMs can resolve each other by name using the .internal TLD:

# Inside a VM (use getent, not ping directly)
getent hosts bob.internal
# Returns: 10.0.0.2  bob.internal

# Then ping by IP or use applications that respect system DNS
ping 10.0.0.2

Note: BusyBox ping has its own resolver that bypasses /etc/resolv.conf. Use getent hosts or applications that use libc for DNS.

CLI Reference

# Daemon
hypervms daemon start|stop|status

# VMs
hypervms vm create <name> --image <image> [--memory 1G] [--cpus 1]
hypervms vm start|stop|rm <name>
hypervms vm list
hypervms vm inspect <name>
hypervms vm ssh <name>

# Images
hypervms image import <path> [--name <name>]
hypervms image list
hypervms image rm <name>

# Networks
hypervms network create <name>
hypervms network add <descriptor> [--name <name>]
hypervms network rm <name>
hypervms network list
hypervms network inspect <name>
hypervms network connect <network> <vm> [--name <peer-name>]
hypervms network disconnect <network> <vm>
hypervms network add-peer <network> <public-key> --name <name>
hypervms network remove-peer <network> <id>

# Info
hypervms info

Global Flags

--storage, -s <path>   Storage directory (default: ~/.hypervms)
--json                 Output as JSON
--quiet, -q            Minimal output

License

MIT