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

@log1331/zoner

v1.2.8

Published

Self-hosted PowerDNS management panel — web UI + API backend in one package

Downloads

163

Readme

DNS Dashboard

Self-hosted DNS management panel powered by PowerDNS — modern web frontend + custom-built backend API, supporting master/slave replication across multiple nameservers.

Structure

.
├── frontend/   # Web UI (Vite + React + Tailwind) — http://localhost:5173
├── backend/    # API backend (Express + SQLite) — http://localhost:5001/api
└── docs/       # PowerDNS master/slave setup docs + E2E results

Features

  • Zone management: add/delete, sync from PowerDNS (automatic every 30 minutes + manual sync button)
  • Record management: A, AAAA, CNAME, TXT, MX, SRV, CAA — full validation, search
  • Zone templates: create preset record sets, apply when adding a domain
  • Export zone to BIND zone file
  • Verify NS delegation (check whether nameservers have been pointed over)
  • Configure PowerDNS / nameservers / secondary servers right from the Settings page
  • Multi-server: automatically create/delete slave zones on secondaries when adding/deleting zones
  • Auth: a single admin account (seeded from env), JWT, change email/password in Settings

Quick start

Option 1: npm (simplest)

npm install -g @log1331/zoner   # or: npx @log1331/zoner
zoner                           # open http://localhost:5001

On first run it creates ~/.local/zoner/ and prints the admin password exactly once. Point it at your PowerDNS server from the Settings page after logging in.

Global install note: if your npm prefix is /usr (default on many distros), use sudo npm i -g @log1331/zoner. The dashboard stores its data in ~/.local/zoner of whichever user runs it (run with sudo → /root/.local/zoner).

Option 2: from source

# 1. Spin up 2 test PowerDNS servers (master ns1 + slave ns2) with podman:
cd backend && bash scripts/setup-pdns.sh        # seeds config straight into the DB

# 2. Backend:
cd backend && npm install && npm run dev        # :5001

# 3. Frontend:
cd frontend && npm install && npm run dev       # :5173

Default login: [email protected] / Admin@123 (change in backend/.env, then delete backend/data.sqlite to re-seed, or change it on the Settings page).

Deploying to real servers

See docs/SETUP-PDNS.md — the backend/scripts/install-pdns.sh script runs directly on each Ubuntu VPS:

sudo bash install-pdns.sh master   # on ns1
sudo bash install-pdns.sh slave    # on ns2

PowerDNS connection (API URL, key, nameservers, zone kind, secondaries) is configured from the Settings page after login — stored in the DB, not read from env.