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

@yonrad/jql

v0.0.6

Published

## Summary Makes using JQL (Jira Query Language) a better experience from the command line

Downloads

9

Readme

jql

Summary

Makes using JQL (Jira Query Language) a better experience from the command line

Warning I made this tool for myself to simplify my life. It isn't intended to be shared, but I'm keeping it public in case someone wants to be inspired. Will it work on your computer? Maybe, but maybe not.

Features:

  • Outputs Jira Issues in a format that is easier to use in templates
  • Simplifies writing valid jql on the command line (bash/zsh) by enabling autocomplete and validating syntax

Why?

Are you an engineer who who has to spend a lot of time in Jira? Do you prefer using the command line over using a UI? Wouldn't it be great if you can use all the same tools you're used to (grep comes to mind) when finding the Jiras that are pertinent to you? You could use this amazing jira cli but then you have to memorize jql and typos are a pain, especially for us developers who are so used to code completion in our IDEs. This tool will enable jql code completion within your command line so that you can better use your tools and stay away from using clunky UIs.

Why waste time say lot word when few word do trick?

Installing

npm install -g @jonrad/jql

# Add the following to your bashrc or zshrc (or run from command line to test as a one off)
source <(jql completion)

Getting started

jql config # then follow prompts

How to use

# The following will give you valid syntax to provide to anything that requires jql
jql assi<tab> = Jon<tab><enter>
# Output:
# assignee = "Jon Radchenko"

Using with jira-cli

jira issue list --jql "$(jql assi<tab> = Jon<tab> AND statusC<tab> != Do<tab>)"