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 🙏

© 2024 – Pkg Stats / Ryan Hefner

wdid

v0.2.7

Published

CLI program that stores and records your daily stand-ups

Downloads

5

Readme

wdid logo

wdid

What did I do is a command line tool for preparing and recording your daily SCRUM stand-ups.

https://comatory.github.io/wdid

Why?

I want to recall the work I've done during my previous work day during daily stand-up meetings.

I also wanted to have ability to see linear record of my stand-ups.

Installation

wdid is written in Javascript for NodeJS environments. It should be installed globally so it's accessible as an executable. The required version of NodeJS is at least v18.

The entries are stored in sqlite database file.

NPM

npm i -g wdid

Git repository

  1. Clone this repository
  2. CD into the cloned folder
  3. npm link

brew

TBD

Initial setup

wdid init is required before using the tool. It sets you up with configuration file and database file.

You can re-run this command anytime. It will also detect any existing configuration and database file, so you can move these between machines and it should work fine.

How does it work?

Run wdid --help to get hints or append --help flag to any command wdid offers.

The tool operates under certain assumptions and is very opinionated. It has two modes of operation that map to type of stand-up entry:

  • stand-up (command: wdid new)
  • reminder (command: wdid remind)

You should record your stand-up at the beginning of your work day. That way you can share it or report it during stand-up meeting.

Reminder should be recorded at the end of your work day. The reminder helps you with stand-up which happens next day as it helps you recall the work you did during the work day.

You can re-run each command to edit the entries.

List my stand-ups

Run wdid log to get ordered list of all stand-ups. wdid log --last will show the latest stand-up.

You can also get list of reminders by including -r flag. See wdid log --help for more options.