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

comodoro

v1.0.2

Published

A Pomodoro timer for the command line built with React and Ink

Readme

Comodoro 🍅

A Pomodoro timer for the command line built with React and Ink

npm version License: MIT Node.js Version

Description

Comodoro is a CLI implementation of the Pomodoro Technique, a time management method that uses a timer to break work into focused intervals (traditionally 25 minutes) separated by short breaks. After completing a set number of work sessions, you take a longer break.

Key Features

  • ⏱️ Customizable timers: Configure work sessions, short breaks, and long breaks
  • 🎨 Two display modes: Choose between minimal and full display interfaces
  • 🔔 Audio notifications: Optional beep sounds to signal interval changes
  • ⏸️ Pause/Resume: Control your timer with keyboard shortcuts
  • 📊 Session tracking: Keep count of completed work sessions
  • 🎛️ Flexible configuration: Adjust all timing parameters via command-line flags

Screenshots

Minimal Display Mode

Simple one-line display showing current interval and remaining time

Full Display Mode

Bordered display with additional information and visual emphasis

Installation

Prerequisites

  • Node.js 16 or higher

Install globally via npm

npm install --global comodoro

Development installation

git clone <repository-url>
cd comodoro
npm install
npm run build

Usage

Basic Usage

Start a Pomodoro session with default settings:

comodoro

Command-line Options

| Option | Short | Type | Default | Description | |--------|-------|------|---------|-------------| | --work | -w | number | 25 | Work duration in minutes | | --break | -b | number | 5 | Short break duration in minutes | | --longBreak | -l | number | 15 | Long break duration in minutes | | --sessions | -s | number | 4 | Number of work sessions before long break | | --fullDisplay | -f | boolean | false | Use full display mode instead of minimal | | --noBeep | | boolean | false | Disable audio notifications |

Interactive Controls

  • p - Pause/resume the current timer

Examples

Standard Pomodoro (25/5/15 minutes):

comodoro

Custom work and break durations:

comodoro --work 30 --break 10 --longBreak 20

Full display mode with custom sessions:

comodoro --fullDisplay --sessions 3

Silent mode (no audio notifications):

comodoro --noBeep

Quick 15-minute focus session:

comodoro -w 15 -b 3 -s 2

How It Works

  1. Work Session: Focus on your task for the specified duration (default: 25 minutes)
  2. Short Break: Take a brief break (default: 5 minutes)
  3. Repeat: Continue the work/short break cycle
  4. Long Break: After completing the configured number of sessions (default: 4), take a longer break (default: 15 minutes)
  5. Cycle: Return to work sessions and repeat the process

Audio Notifications

  • Work session start: 1 beep
  • Short break start: 2 beeps
  • Long break start: 3 beeps

Display Modes

Minimal Timer

  • Simple one-line output
  • Shows current interval type and remaining time
  • Perfect for minimal terminal setups
  • Color-coded: green (running), yellow (paused)

Full Display

  • Bordered interface with enhanced visual appeal
  • Shows current interval, time, and session progress
  • Includes helpful controls reminder
  • More prominent status indicators

Requirements

  • Node.js 16 or higher
  • Terminal with color support (recommended)

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request