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

tally-time

v1.0.0

Published

A simple, no-nonsense CLI tool for tracking daily work hours

Readme

Tally

A simple, no-nonsense CLI tool for tracking daily work hours.

Overview

Tally is a lightweight command-line time tracking application that helps you monitor your work sessions. It features session management with pause/resume capabilities, project and tag organization, and comprehensive reporting options.

Features

  • Start, stop, pause, and resume work sessions
  • Organize sessions by project, tag, and notes
  • Real-time session status with live timer
  • Generate reports for different time periods
  • Export data to JSON or CSV formats
  • Automatic detection and handling of incomplete sessions
  • Cross-platform support (Windows, macOS, Linux)

Installation

npm install -g tally-time

Requirements

  • Node.js >= 14.0.0

Usage

Start a Session

# Start a basic session
tally start

# Start with a project name
tally start myproject

# Start with project, tag, and note
tally start -p myproject -t feature -n "Working on authentication"

Stop a Session

# Stop the current session
tally stop

# Stop and add a note
tally stop -n "Completed task"

Pause and Resume

# Pause the current session
tally pause

# Resume a paused session
tally resume

Check Status

# Show current session status
tally status

# Show live updating timer
tally status --live

Generate Reports

# Today's report (default)
tally report

# Yesterday's report
tally report yesterday

# Weekly report
tally report week

# Monthly report
tally report month

# Specific date
tally report 2024-01-15

# Detailed breakdown
tally report --detailed

# Export to JSON
tally report week --export json

# Export to CSV
tally report month --export csv

Commands

| Command | Description | Options | |---------|-------------|---------| | start [project] | Start a new work session | -p, --project <name> Project name-t, --tag <tag> Tag for the session-n, --note <note> Note or description | | stop | Stop the current work session | -n, --note <note> Add a note when stopping | | pause | Pause the current work session | None | | resume | Resume a paused work session | None | | status | Show current session status | -l, --live Show live updating timer | | report [period] | Generate work reports | -d, --detailed Show detailed session breakdown--export <format> Export format: json or csv |

Data Storage

Tally stores all session data locally in a SQLite database:

  • Windows: %LOCALAPPDATA%\tally\tally.db
  • macOS: ~/Library/Application Support/tally/tally.db
  • Linux: ~/.local/share/tally/tally.db

Contributing

Contributions are welcome. Please feel free to submit issues or pull requests to improve Tally.

License

MIT