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

pom-tool

v0.3.1

Published

A small Node.js CLI for running Pomodoro timers in your terminal.

Readme

pom-tool

A terminal-native Pomodoro CLI with Bark notifications and a distinctive focus UI.

pom-tool is a lightweight Node.js terminal app for running Pomodoro sessions, tracking your focus time, and sending a completion notification to your iPhone with Bark.

Unlike generic Pomodoro apps, this one is built around two hooks:

  • Bark-first completion alerts so your phone tells you when focus time is over
  • terminal-native UI with an ink-style countdown, stage-based color shifts, and a progress bar that feels good to watch

If you want a Pomodoro timer that is:

  • fast to start
  • pleasant in the terminal
  • useful enough to keep using every day
  • simple enough to trust

this is the one.

pom-tool terminal demo Bark notification demo

Why people like it

  • One command to start focus mode: pom 25
  • Distinctive terminal UI: ink-style countdown, stage labels, progress bar, readable status
  • Real stats: today, 7-day average, 30-day average, total completed sessions
  • Phone notification on completion: works with Bark on iPhone
  • No app switching: stay inside your terminal and keep working
  • Tiny mental overhead: easy enough to use dozens of times a day
  • Version check built in: pom -v or pom --version

Install

Use it instantly:

npx pom-tool 25

Or install globally:

npm i -g pom-tool

Then run:

pom 25

Quick Start

Start a 25-minute Pomodoro:

pom 25

See your focus stats:

pom status

Configure Bark:

pom bark

Or set Bark non-interactively:

pom bark --url https://api.day.app/<your_key>

Show help:

pom --help

Show current version:

pom -v

What It Does

1. Start a Pomodoro in seconds

pom 25

You get:

  • an immediate ink-style countdown in your terminal
  • a progress bar in the ████░░░░ style
  • stage-based visual shifts like WARMUP, FLOW, PUSH, and FINISH
  • a short completion animation when the session ends
  • a clean completion panel
  • a terminal bell when the session ends
  • a system voice reminder on macOS
  • an optional Bark push notification when the session is finished

2. See whether you are actually focusing

pom status

pom status shows:

  • today's focused minutes
  • average minutes per day in the last 7 days
  • average minutes per day in the last 30 days
  • total completed sessions
  • Bark configuration status
  • last completed Pomodoro timestamp

3. Push the finish alert to your phone

If you use Bark, pom-tool can notify your iPhone when a Pomodoro is done.

Setup:

  1. Open Bark on your iPhone.
  2. Copy your Bark URL. It usually looks like https://api.day.app/<your_key>.
  3. Run:
pom bark

Or:

pom bark --url https://api.day.app/<your_key>

4. Check the installed version

pom -v
pom --version

Why This Project Stands Out

Most Pomodoro tools are either:

  • too generic
  • too visual-heavy
  • too disconnected from terminal workflows

pom-tool is different because it sits at the intersection of:

  • productivity
  • terminal tooling
  • indie hacker workflows
  • iPhone notification automation
  • terminal-native visual feedback
  • CLI ergonomics with almost no setup friction

That combination makes it easier to:

  • screenshot
  • demo in a tweet/video
  • share in dev communities
  • adopt immediately with one command

If you like the tool, star the repo and share your terminal setup.

Common Use Cases

  • Developers using Pomodoro without leaving Neovim, VS Code terminal, or tmux
  • Remote workers who want a phone notification when focus time ends
  • People trying to build a daily deep-work habit
  • Makers who want a tiny CLI instead of a heavy desktop app

Development

This repo uses TypeScript + pnpm.

Clone and install:

git clone https://github.com/AlucPro/pom-tool.git
cd pom-tool
pnpm install

Build:

pnpm build

Run locally:

node dist/index.js 25

Or with the dev script:

pnpm dev -- 25

Link globally for local testing:

pnpm build
pnpm link --global
pom 25

Unlink:

pnpm unlink --global pom-tool

Requirements

  • Node.js 18+

Versioning

This package follows Semantic Versioning: MAJOR.MINOR.PATCH.

License

MIT