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

@keithk/deploy-admin

v0.1.0

Published

Deploy Admin Panel

Downloads

4

Readme

Deploy Admin Frontend

A web-based admin interface for Dial Up Deploy, built with vanilla web components and basic CSS.

Features

  • Dashboard: Overview of server status, sites, and processes
  • Sites Management: Create, build, and manage sites
  • Process Management: View and control running site processes
  • Actions: View and manage automated workflows
  • Server Management: Server status and control

Architecture

  • Framework: Vanilla JavaScript with Web Components
  • Styling: Basic CSS (no frameworks)
  • API: RESTful API endpoints for all functionality
  • Real-time: Auto-refreshing components for live status updates

API Endpoints

  • GET /api/sites - List all sites
  • POST /api/sites - Create a new site
  • POST /api/sites/:name/build - Build a specific site
  • POST /api/sites/:name/run/:command - Run a command for a site
  • GET /api/processes - List all processes
  • POST /api/processes/:id/start - Start a process
  • POST /api/processes/:id/stop - Stop a process
  • GET /api/server/status - Get server status
  • GET /health - Health check

Web Components

  • <deploy-header> - Main header with app title and refresh button
  • <deploy-nav> - Navigation sidebar
  • <deploy-dashboard> - Dashboard overview
  • <deploy-sites> - Sites management interface
  • <deploy-processes> - Process management interface
  • <deploy-actions> - Actions management interface
  • <deploy-server> - Server management interface

Accessing the Interface

  1. Make sure the deploy server is running:

    bun run dev
  2. Add this line to your /etc/hosts file:

    127.0.0.1 deploy.localhost
  3. Open your browser and go to:

    http://deploy.localhost:3000

Development

The frontend is a static site served by the deploy server. All files are in the sites/deploy-admin/ directory:

  • index.html - Main HTML file
  • styles.css - Global styles
  • app.js - Main application logic and routing
  • components/ - Web component definitions

Browser Support

Works in all modern browsers that support:

  • Web Components (Custom Elements)
  • ES6 Modules
  • Fetch API
  • CSS Grid

Security

This is an admin interface intended for development and internal use. For production deployments, consider adding:

  • Authentication/authorization
  • HTTPS/SSL
  • CSRF protection
  • Rate limiting