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

jiranow

v1.0.0

Published

CA command line tool to help engineers create Jira tickets as fast as possible by providing as few details as possible.

Downloads

4

Readme

Jira Now

A command line tool to help engineers create Jira tickets as fast as possible by providing as few details as possible.

Photo of a boardgame on a wooden table

Why Jira Now?

As a product owner, delivery manager, or engineer - we all know the value of ticket management in creating, tracking, and delivering against work items. One of the biggest obstacles in "getting stuff done" is the administration around creating a ticket for a project, so that ideas are captured, so that conversations can happen asynchronously, so that branches and pull requests can be created, and so that reports can be generated. Making the ticket, capturing the idea, should not be a obstacle to getting stuff done.

Jira now seeks to automate the problem of "create a ticket for a piece of work"; this tool seeks to automate that process for Software Projects by collecting and storing default information about your project space.

The type of information Jira Now tracks tries to answer common questions:

  • What Jira system is your default?
    • usually companies have a self-hosted Jira, but sometimes you might want to switch to public or opensource Jira instances based on the project
  • Which project space does the ticket need to be created in?
    • this often doesn't change between software repositories
  • What is the title of the ticket?
    • Ideally this is the only information you should need to provide
  • What are the default fields for your team?
    • What epic should the ticket belong to?
    • What labels to assign by default?
    • What squad, team, or software project is needed?

All these defaults can be stored in either a project JSON file in the local software project, or as user defaults on your local machine - making a best guess based to suit the user's workflow. The tool can also be installed as a package depedency, to avoid global installation, and can be built into a CI pipeline - e.g. for raising a release ticket after a successful build.

Prereqsuites

  • node js > 16.x installed : https://nodejs.org/en/
  • npm / npx - should come installed with node

Initial Configuration

To get setup, a workflow wizard is provided on the command line - simply run the following command and answer the questions:

  • npx jiranow configure

After initial configuration - Jira Now will look in these locations to store and load configuration:

  • ~/.jiranow/config.json - a user's global jiranow configuration in their local system configuration
  • ./.jiranow.json - a local jiranow configuration file in the current directory
  • ./package.json - a jiranow configuration block inside package.json in the current directory

You can run npx jiranow configure again from any project folder, to either create new project level configuration, or update your user global defaults.

Feel free to edit the files directly if you prefer; and be careful about what information or secrets are checked into source control.

Environment Variables

Environment variables are referenced via configuration; you can specify environment variables to store secret keys such as your Jira API token - you might need multiple environment variables to connect to different Jira systems - depending on the complexity of projects you're working on.