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

standup-boy

v1.6.0

Published

A simple module to create daily standup texts

Downloads

160

Readme

Standup boy: Daily standup from the terminal

install size Build Status XO code style

standup-boy helps you create daily standup texts fast and easy. It prompts you the usual stuff for a daily standup, then outputs a nicely-formatted, emoji-ready text for you to use in whatever platform you desire. Assumes markdown formatting.

Install

$ npm install --global standup-boy
$ standup-boy --help
    Usage
        standup-boy [options]

    Options
      --log  [--from date] Get a log of the messages sent. Specify the date from wich to retrieve te messages on with --from date
      --path -p Get the path to the configuration file (read-only).
      --project projectName Specify the name of the project you want to send the message to.

    Examples
        $ standup-boy
        ? What did I accomplish yesterday? Something!
        ? What will I do today? Something Else!
        ? What obstacles are impeding my progress? Any info I need or want to share? Not much...

        :triumph: **\`What did I accomplish yesterday\`**
        Something!
        :scream_cat: **\`What will I do today\`**
        Something Else!
        :cry: **\`What obstacles are impeding my progress? Any info I need or want to share?\`**
        Not much...
        Copied the result to the clipboard!

        $ standup-boy --log --from "Mon Oct 19 2019"
        Mon Oct 21 2019 21:21:09 GMT+0200 (Central European Summer Time)
        [
            "Did some cool stuff!",
            "Work on some awesome stuff!",
            "The coffee machine has run out of coffee!"
        ]

Configuration

You can obtain the path to the configuration file by simply running standup-boy --path (read-only). Edit the resulting file to override the defaults.

Mind that this configuration only alters the final text that gets copied into your clipboard.

Templates

One can configure standup-boy to replace the default templates for the resulting standup text.

An example of an alternative configuration, written in JSON format:

{
  "yesterday": "Hey, you! What did you do yesterday?",

  "today": "Oh really? And what are you gonna do today?",

  "obstacles": "Did you find any obstacles along the way, tho?"
}

Replace words

standup-boy can also be configured to search and replace certain keywords for, for example, automatically link to JIRA tasks. RegExp syntax is supported.

If you want to introduce the matched string into the replaced value, you can add the %VAL% keyword anywhere in your resulting text to interpolate the matched variable into it.

An example of an alternative configuration, written in JSON format:

{
  "replace" :
  {
    "JIRA-[0-9]*": "[%VAL%](https://your-jira.url/%VAL%)"
  }
}

This results in this text:

I completed JIRA-220 today!

Being replaced by:

I completed [JIRA-220](https://your-jira.url/JIRA-220) today!

If translated to markdown, a nice link appears in place of the old, lame, jira task name.

Slack / Mattermost integration

This module can also be configured to automatically send the resulting message to your desired slack / mattermost channel once you've answered all the questions.

If your configuration is valid, a prompt should appear once your message has been written:

? Slack / Mattermost integration details found. Do you want to send the message? (Y/n)

On confirmation, the message will be sent to the destination specified by your configuration.

An example of a valid configuration, written in JSON format:

{
    "username" : "vikepic",
    "channel" : "daily-standup",
    "url" : "https://your-slack-url"
}

Alternatively, you can have more than one project on your configuration file:

{
    "projects" :
    {
        "project-turnip":
        {
            "username" : "vikepic",
                "channel" : "daily-standup-turnip",
                "url" : "https://your-slack-url"
        },
            "project-avocado":
            {
                "username" : "vikepic",
                "channel" : "daily-standup-avocado",
                "url" : "https://your-slack-url"
            }
    }
}

If that is the case, you can specify with the --project flag which one will you send the message to. If not specified, the program will prompt to you which of the existing projects you want to use to send your message:

? Multiple projects found. Please, select the project you want to send the results to. (Use arrow keys)
❯ project-turnip
  project-avocado

Once selected, standup-boy will send the message to the project of your choice.

License

MIT © lts-beratung