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

tost-cli

v1.0.0

Published

Task Oriented Session Timer — a minimal focus timer for the terminal

Downloads

280

Readme

tost

task oriented session timer — a minimal focus timer for the terminal.

Preview

In the terminal, a focus or break session shows a single-line countdown with a progress bar:

Focus — 12:34 remaining  [██████████░░░░░░░░░░] 50%

(The filled part of the bar is cyan and the unfilled part is dim in a real terminal.)

Philosophy

tost is intentionally minimal and calm. It does not track tasks, lists, streaks, productivity stats, or history. It is a quiet, terminal-native focus timer. No gamification.

Installation

npm install -g tost-cli

Or use it via npx:

npx tost-cli 25

Usage

tost <minutes>          # Start a focus session
tost break <minutes>    # Start a break session
tost config             # Show config path and current config
tost config set <key> <value>   # Update config (e.g. alerts.bell false)
tost config reset       # Delete config (wizard runs next time)

Examples

tost 25                 # 25-minute focus session
tost 1                  # 1-minute focus (handy for testing)
tost break 5            # 5-minute break
tost --no-bell 25       # Focus without terminal bell
tost --notify 30        # Explicitly enable desktop notification
tost --quiet 60         # Minimal output, no bar, no alerts

Flags

| Flag | Description | |------|-------------| | --quiet | Minimal output. Disables progress bar and all alerts. | | --no-bar | Disable progress bar for this run only. | | --no-bell | Disable terminal bell for this run. | | --no-notify | Disable desktop notification for this run. | | --notify | Explicitly enable desktop notification. |

CLI flags override config for that run only.

Config

Config is stored as JSON:

  • Windows: %APPDATA%/tost/config.json
  • macOS: ~/Library/Application Support/tost/config.json
  • Linux: ~/.config/tost/config.json

Schema:

{
  "progressBar": true,
  "alerts": {
    "bell": true,
    "notify": true
  },
  "tickMs": 250
}

On first run (when stdout is a TTY), a wizard guides you through initial setup.

Non-TTY

When stdout is not a TTY (e.g. piped, background), tost:

  • Does not show the progress bar
  • Does not run interactive prompts
  • Uses safe defaults
  • Still allows completion alerts unless --quiet is used

Publishing

npm version patch
npm publish --access public

Author

Adam Hetherington

License

MIT