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

jira-issue-generator

v2.1.2

Published

Generate CSV files for importing issues into Jira from markdown files.

Downloads

48

Readme

jira-issue-generator

Generate CSV files for importing issues into Jira from markdown files.

Usage

  1. Create a Markdown file.

  2. Create a YAML frontmatter section to specify global metadata

    1. At the top of the file, add a snipped of YAML surrounded by horizontal rules.

      ---
      parent: 'PAC-21694'
      ---
      
      # Your 1st issue

      Check out the Frontmatter type for a list of expected keys.

  3. Specify your Jira issues within it using Markdown syntax

    • A leading level-1 heading (# like this) specifies the issue summary

    • Optionally add a table underneath to add metadata about the issue

      | Key      | Value |
      | -------- | ----- |
      | Type     | story |
      | Priority | 4     |
    • Add your (simple) Markdown-formatted description

    • To create a 2nd issue, separate it from your 1st issue with a horizontal rule (eg: ---)

    [!TIP] Check out the sample issue file below for a full example.

  4. Run npx jira-issue-generator YOUR_MARKDOWN_FILE.md to generate your CSV & JSON files for importing in to Jira.

  5. Open the Jira importer

    1. Go to Jira
    2. Select "Filters" in the top nav bar
    3. Click "View all issues"
    4. Click the overflow ("•••") in the top right
    5. Click "Import issues from CSV"

    or

    https://paciolan.atlassian.net/secure/BulkCreateSetupPage!default.jspa?externalSystem=com.atlassian.jira.plugins.jim-plugin%3AbulkCreateCsv&new=true

  6. Add the generated CSV to "CSV Source File"

  7. Check "Use an existing configuration file"

  8. Select the generate JSON configuration

  9. Hit "Next" until you're done!

Sample issue file

---
parent: 'PAC-21694'
project-name: 'Integrations'
project-key: 'INT'
dev-team-name: 'Integrations'
dev-team-field-id: 10055
---

# Hello world

| Key      | Value |
| -------- | ----- |
| Type     | story |
| Priority | 3     |

Some simple **markdown** to describe the issue.

---

# A 2nd issue

| Key      | Value |
| -------- | ----- |
| Type     | bug   |
| Priority | 1     |

Write a nice descriptive body