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

junhost

v5.0.2

Published

Jun — a self-hosted dashboard that runs and supervises Codex as a 24/7 local/VPS agent: chat runs, workspace files, skills, MCP, schedules.

Readme

Jun

Self-hosted dashboard that runs and supervises Codex as a 24/7 agent on your own machine or VPS.

  • Chat runs — full Codex conversations with live streaming, reasoning, tool cards, approvals, steering, models/effort/sandbox per conversation
  • Workspaces — multiple isolated project workspaces with a file tree, editor, and previews
  • Remote browser — watch the agent browse in a live viewport, take manual control, WAF-resistant stealth engine, proxy support
  • Skills — create, edit, and test agent skills; install from the skills.sh registry
  • MCP — manage MCP servers from the UI; Jun ships its own MCP server so the agent can manage itself
  • Schedules — cron or one-off automated runs, unattended approval mode
  • Memories — Codex's native memory feature, surfaced and editable

Requirements

  • Bun ≥ 1.2
  • Codex CLI on your PATH (npm i -g @openai/codex) with a signed-in account

Install

bun install -g junhost
jun start

Open http://127.0.0.1:8787. Sign in to Codex from the Settings page (device-code flow works on headless servers).

jun doctor   # check prerequisites
jun help

Where things live

All state is in ~/.jun (override with JUN_HOME): projects/workspaces, run history (JSONL), schedules, config. The daemon binds 127.0.0.1 by default (override JUN_HOST/JUN_PORT) — for quick remote access, tunnel: ssh -L 8787:127.0.0.1:8787 user@host.

Run on a VPS (Debian/Ubuntu)

# Bun + Codex CLI
curl -fsSL https://bun.sh/install | bash && export PATH="$HOME/.bun/bin:$PATH"
npm install -g @openai/codex

# Chromium system libs — required, or the stealth browser engine can't launch
# and sites behind edge WAFs will block the agent. (libasound2 on Ubuntu <24.04.)
apt-get update && apt-get install -y \
  libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libdrm2 \
  libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 \
  libpango-1.0-0 libcairo2 libxshmfence1 libasound2t64

bun install -g junhost && jun doctor

Run it as a systemd service — /etc/systemd/system/jun.service:

[Unit]
Description=Jun
After=network-online.target
Wants=network-online.target

[Service]
Environment=JUN_HOME=/var/lib/jun
Environment=PATH=/root/.bun/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ExecStart=/root/.bun/bin/bun /root/.bun/bin/jun start
Restart=always
RestartSec=3

[Install]
WantedBy=multi-user.target
systemctl daemon-reload && systemctl enable --now jun

To reach the dashboard, either SSH-tunnel, or put Caddy in front for HTTPS (reverse_proxy 127.0.0.1:8787 — WebSockets work automatically; add basic_auth, since Jun has no built-in login yet). Sign in to Codex from Settings — the device-code flow works headless. If the box has a datacenter IP, set a residential browser proxy in Settings → Browser proxy (or JUN_BROWSER_PROXY=http://user:pass@host:port; in a systemd drop-in use raw %-free credentials — % is a systemd escape). Upgrade anytime: jun upgrade && systemctl restart jun.

License

Proprietary — all rights reserved. Free to install and use; the source is not open.