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

cron-gui

v1.0.0

Published

Web interface for managing cron jobs without editing crontab by hand

Readme

Cron GUI is a drop-in successor to crontab-ui with a rebuilt interface, safer deploy workflow, and dozens of bug fixes. Create, edit, pause, run, back up, and restore jobs from one place — then deploy to the system crontab when you are ready.

Highlights

| | | |:--|:--| | Safe by default | Edit jobs in the app first. Review changes, preview the crontab text, then deploy with Save to crontab. | | Built for real servers | Search, status filters, bulk actions, pagination, and per-job stdout/stderr logs. | | Portable | Export crontab.db and move jobs between machines without SSH or copy-paste. | | Compatible | Existing crontab.db files from crontab-ui work as-is. |

Quick start

Requires Node.js 20+.

npm install -g cron-gui
cron-gui

Open http://127.0.0.1:8000

# Custom host, port, or data directory
HOST=0.0.0.0 PORT=9000 CRON_DB_PATH=/var/lib/cron-gui cron-gui

# Reset local database and start fresh
cron-gui --reset

See it in action

Job dashboard

Sortable table with live status, next-run hints, and unsaved-change indicators — so you always know what is scheduled and what still needs deploying.

Create and edit jobs

Schedule presets, cron expressions, logging, and optional email notifications — all in a focused dialog.

Preview before you deploy

See the exact crontab text — environment variables plus one line per enabled job — before writing to the system crontab.

Crontab environment

Set PATH, MAILTO, and other variables once — applied to every deployed job.

Per-job logs

View stdout and stderr history for any job without leaving the page.

Backups and portability

Server-side snapshots, database import/export, and system crontab sync — grouped under Actions.

Search, filters, and dark mode

Find jobs instantly, filter by status, and switch themes to match your environment.

Configuration

| Variable | Purpose | |----------|---------| | HOST | Bind address (default 127.0.0.1) | | PORT | Port (default 8000) | | BASE_URL | URL path prefix when behind a reverse proxy | | CRON_DB_PATH | Directory for crontab.db, backups, and logs | | BASIC_AUTH_USER / BASIC_AUTH_PWD | HTTP basic auth | | SSL_CERT / SSL_KEY | HTTPS (both must be set together) | | ENABLE_AUTOSAVE | Auto-deploy on DB changes |

Common flags: --autosave, --reset

Full reference: docs/configuration.md

Docker

docker pull ysskrishna/cron-gui:latest
docker run -d -p 8000:8000 ysskrishna/cron-gui:latest

With Compose:

docker compose up -d

See docs/docker.md for volumes, auth, and production notes.

Migrating from crontab-ui

  1. Install cron-gui instead of crontab-ui — existing crontab.db files are compatible.
  2. Schedule presets: The UI uses 5-field cron expressions plus @reboot. Macros like @hourly still work in crontab if typed manually.
  3. Deploy workflow: Changes are staged in the app until you click Save to crontab (unless --autosave is enabled).

Resources

Support

If you find this project helpful:

Credits

Forked from crontab-ui by alseambusher.

License

MIT © Y. Siva Sai Krishna — see LICENSE for details.