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 🙏

© 2026 – Pkg Stats / Ryan Hefner

jira-ticket-creator

v1.0.5

Published

CLI tool to create Jira tickets with markdown support

Readme

Jira Ticket Creator

A powerful CLI tool to create Jira tickets with Markdown support.

npm version License: MIT

Features

  • Create Jira tickets directly from the command line
  • Convert Markdown to Jira markup
  • Support for custom fields, components, and labels
  • Automatic user assignment
  • Flexible input options (file or inline text)

Installation

npm install -g jira-ticket-creator

Usage

create-jira-ticket [options]
# or
npx jira-ticket-creator [options]

Options

| Option | Alias | Description | Required | |--------|-------|-------------|----------| | --host | -h | Jira host URL | Yes | | --email | -e | Your Jira email | Yes | | --api-token | -t | Your Jira API token | Yes | | --project-key | -p | Jira project key | Yes | | --summary | -s | Ticket summary | Yes | | --markdown | -m | Markdown content (file path or inline text) | Yes | | --issue-type | -i | Issue type (default: "Task") | No | | --parent-key | | Parent issue key for sub-tasks | No | | --labels | -l | Comma-separated list of labels | No | | --priority | | Priority of the issue | No | | --assignee | -a | Assignee (username or email) | No | | --components | -c | Comma-separated list of components | No | | --custom-fields | | JSON string of custom fields | No |

Example

create-jira-ticket \
  --host "https://your-domain.atlassian.net" \
  --email "[email protected]" \
  --api-token "your-api-token" \
  --project-key "PROJ" \
  --summary "Implement new feature" \
  --markdown "feature-description.md" \
  --issue-type "Story" \
  --labels "frontend,urgent" \
  --priority "High" \
  --assignee "[email protected]" \
  --components "UI,API" \
  --custom-fields '{"customfield_10001": "Custom Value"}'

Markdown Support

This tool converts Markdown to Jira markup. Supported Markdown features include:

  • Headers (H1-H6)
  • Bold and italic text
  • Ordered and unordered lists
  • Code blocks and inline code
  • Links and images
  • Blockquotes
  • Horizontal rules
  • Tables

API Token

To use this tool, you need to generate an API token for your Jira account:

  1. Log in to https://id.atlassian.com/manage/api-tokens
  2. Click "Create API token"
  3. Copy the generated token

Never share your API token or commit it to version control.

Error Handling

The tool provides detailed error messages for various scenarios, including:

  • Invalid input formats
  • Network errors
  • Jira API errors
  • Exceeded Jira limits (e.g., description length)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you encounter any problems or have any questions, please open an issue on the GitHub repository.