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

sprintr

v0.0.4

Published

> Open ticket to represent your sprint status from terminal. > Keep focus on your IDE. > Avoid going to browser.

Downloads

3

Readme

Sprintr

Open ticket to represent your sprint status from terminal.
Keep focus on your IDE.
Avoid going to browser.

Usage

npm install -g sprintr
sprint --summary "do this task"

>> { id: '25767',
  key: 'ABC-10566',
  self: 'https://myaccount.atlassian.net/rest/api/3/issue/11111111' }


sprint status

>>
────────────────────────────────────────────────────────────────┬──────────────────────────────────────────────────┬────────────────────────────────────────────┐
│ TODO                                                          │ In Progress                                      │ Done                                       │
├───────────────────────────────────────────────────────────────┼──────────────────────────────────────────────────┼────────────────────────────────────────────┤
| Task 1 Summary                                                |                                                  |                                            |
| ---------                                                     |                                                  |                                            |
| Bug       Assignee1                                           |                                                  |                                            |
| https://account.atlassian.net/browse/KEY-1234                 |                                                  |                                            |
└───────────────────────────────────────────────────────────────┴──────────────────────────────────────────────────┴────────────────────────────────────────────┘

Conf file

Example configuration file

default:
  type: jira // only cloud jira currently supported
  auth:
    token: __token__ // generate at https://id.atlassian.com/manage-profile/security
    username: __user__
    account: __account__ // subdomain
  columns:
    - label: TODO
      statuses: ["Open", "Reopened"]
    - label: In Progress
      statuses: ["In Progress"]
    - label: Done
      statuses: ["Resolved", "Closed"]
  filter:
    status: 123456 // filterId from savedFilters in Jira
  target:
    default: // only default currently supported
      project:
        key: __key__ // project key
      issuetype:
        name: __issuetype__ // Bug, Task etc..
      customfield_11243:  // qa Assignee
        name: __username__
      customfield_10300: __number__ // story points
      customfield_10400: // component
        value: __dropdown_value__
      customfield_10104: __some_custom_value__ // Team
      assignee:
        name: __username__

Nice references

  • https://docs.atlassian.com/jira-software/REST/7.3.1/?_ga=2.81964309.20891550.1518072342-1846470600.1499088547#agile/1.0/sprint-getSprint