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

@lowdep/standup

v1.0.0

Published

Cross-platform CLI standup report from your local git repos — works on Windows, Mac, Linux, zero dependencies

Readme

standup

Zero dependencies Node License: MIT Platform

Cross-platform CLI that generates your daily standup report from local git repos.

Scans all registered repo directories, collects yesterday's commits (by you), and shows uncommitted work-in-progress. Outputs a plain-text or markdown report you can paste straight into Slack, Teams, or Notion.

Why not git-standup?
git-standup is a bash script — it doesn't work on Windows without WSL, requires git-extras, and can't output markdown. standup is a single Node.js file with zero dependencies that runs natively on Windows, Mac, and Linux.


Install

npm install -g @rushabh5000/standup

Or run without installing:

npx @rushabh5000/standup

Quick Start

# 1. Register the directories that contain your git repos
standup add D:/projects        # scans one level deep for git repos
standup add D:/work/my-app     # or register a single repo directly

# 2. Run your standup
standup

# 3. Get a Slack-ready markdown version, copied to clipboard
standup --markdown --copy

Example Output

Standup — Tuesday, May 26

DONE:
  vt2  [master]
    14:23  feat: add voucher redemption flow
    16:05  fix: handle expired voucher edge case

  api-service  [feature/payments]
    11:30  chore: upgrade stripe SDK to v14

IN PROGRESS (no commits yet):
  dashboard  [feature/charts]  2 staged, 5 modified

Run with --markdown --copy to get a Slack-ready version.

Markdown output (--markdown):

## Standup — Tuesday, May 26

**Yesterday:**
- [vt2] feat: add voucher redemption flow _(14:23)_
- [vt2] fix: handle expired voucher edge case _(16:05)_
- [api-service] chore: upgrade stripe SDK to v14 _(11:30)_

**In progress (uncommitted):**
- [dashboard] on `feature/charts` — 7 change(s)

**Today:**
- 

Usage

standup [options]
standup add <directory>
standup config

Options

| Flag | Description | |---|---| | --today | Show today's commits instead of yesterday | | --since <date> | Show commits since a specific date (YYYY-MM-DD) | | --author <name> | Override the git author name to filter by | | --markdown | Output in markdown format | | --copy | Copy output to clipboard | | --version | Show version | | --help | Show help |

Sub-commands

standup add <dir>   # Register a scan directory
standup config      # Show current config (~/.standup.json)

Config File

Config is saved to ~/.standup.json:

{
  "scan": [
    "D:/projects",
    "D:/work/my-app"
  ],
  "author": "Your Name"
}

You can edit this file directly. scan entries can be:

  • A parent directorystandup scans one level deep for git repos
  • A direct repo path — used as-is

How It Determines "Yesterday"

  • Weekdays (Tue–Fri): shows the previous day
  • Monday: shows the previous Friday (skips the weekend)
  • Override with --since <date> for any custom range

Clipboard Support

| Platform | Tool used | |---|---| | Windows | clip (built-in) | | macOS | pbcopy (built-in) | | Linux | xclip (install with apt install xclip) |


License

MIT


Keywords

git standup · daily standup · standup report · git log summary · git-standup alternative · what did i do · daily report · team standup · cross-platform · zero dependencies


Built to solve, shared to help — Rushabh Shah 🛠️✨

One of 40+ zero-dependency developer CLI tools — no node_modules, ever.