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

phonepod

v0.0.1

Published

Solid pod on your phone - one command install for Android/Termux

Readme

PhonePod

Solid pod on your phone. One command install for Android/Termux.

Features

  • Solid Pod - Full LDP server with WebID, WAC
  • Nostr Relay - Built-in NIP-01 relay
  • Git Server - Clone and push via HTTP
  • ~100MB RAM - Lighter than a browser tab

Quick Install (Termux)

pkg install nodejs-lts
npm install -g phonepod
phonepod start

Usage

phonepod start              # Start the pod
phonepod start --port 3000  # Custom port
phonepod tunnel user@host   # Setup SSH tunnel for public access
phonepod status             # Show configuration

Public Access

To make your pod publicly accessible, you need a relay server:

# Setup tunnel (generates SSH key, creates tunnel script)
phonepod tunnel [email protected]

# Add the printed SSH key to your relay server
# Then start tunnel with PM2:
pm2 start ~/.phonepod/tunnel.sh --name tunnel
pm2 save

Boot Persistence

Install Termux:Boot from F-Droid, then:

mkdir -p ~/.termux/boot
echo '#!/bin/bash
termux-wake-lock
pm2 resurrect' > ~/.termux/boot/start.sh
chmod +x ~/.termux/boot/start.sh

# Save current processes
pm2 start phonepod -- start
pm2 save

Endpoints

| Endpoint | Description | |----------|-------------| | http://localhost:8080/ | Solid pod root | | ws://localhost:8080/relay | Nostr relay | | http://localhost:8080/relay/info | NIP-11 relay info | | git clone http://localhost:8080/ | Git clone |

Configuration

Config stored in ~/.phonepod/config.json:

{
  "port": 8080,
  "nostr": true,
  "git": true
}

Requirements

  • Android with Termux
  • Node.js 18+
  • For public access: relay server with SSH access

License

MIT