Socket
Socket
Sign inDemoInstall

@klortho/issue-report

Package Overview
Dependencies
23
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @klortho/issue-report

Lightweight application to help track the time spent on JIRA tickets


Version published
Maintainers
1
Install size
3.03 MB
Created

Readme

Source

JIRA issue status report app

This is a lightweight application to help me track the time I spend on JIRA tickets.

Setup

This runs as a CGI(!). To use it, create a project directory for a set of JIRA issues. Make sure that project directory is served under a DOCUMENT_ROOT for an Apache host, or some other CGI-compatible HTTP server. Then, initialize that directory as a new npm package, and install issue-report as a dependency.

For example:

mkdir my-project && cd my-project
npm init -f
npm install @klortho/issue-report
export PATH=`pwd`/node_modules/.bin:$PATH
issue-report init

This will create a new template issues.yaml file. To generate an HTML report from that, run

issue-report

To see the report through a CGI, bring up the URL corresponding to that directory in your browser.

Don't forget to put your project directory under Git:

echo 'node_modules/' > .gitignore
git init
git add .
git commit -m 'Initial commit'

To do

  • Better output of durations; for example, "2w 3d 4h".
  • Show the dates on the estimate columns
  • Add "hours worked" column
  • Render notes, status, and child-of
  • Display a graph of hours worked and estimates / time.
  • Aggregate data from JIRA REST API - priority, etc.

FAQs

Last updated on 04 Jan 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc