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

redmine-issues

v1.0.3

Published

NodeJs Redmine Issues API Client

Downloads

2

Readme

Redmine Issues Rest API NPM version Build Status

Redmine Issues Rest API Client for node.js

Getting Started

Install globally:

npm install -g redmine-issues

Options

  • -h, --help Get usage information.
  • -V, --version Get the version number.
  • -c, --config Set main configuration.
  • -q, --query Get issues for your user.
  • -l, --limit Limit issues query.
  • -i, --issue Set and Get issue information.
  • -p, --percent Set issue percent.
  • -m, --message Set issue message/note.
  • -e, --estimated Set issue estimated hours.

-c, --config

Type: String Syntax: key:value

Set main configuration, can only be used with sudo, for security reasons.

domain

Required: true

sudo redmine -c domain:yourdomain.com

apikey

Required: true

sudo redmine -c apikey:here_your_api_key

port

Default: 80

sudo redmine -c port:80

contenttype

Default: application/json

sudo redmine -c contenttype:application/json

head

Default: green

sudo redmine -c head:blue

border

Default: cyan

sudo redmine -c border:grey

-q, --query

Type: Boolean

Return a redmine issues list of the current user.

redmine -q

-l, --limit

Optional: true Default: 5

redmine -q -l 20

-i, --issue

Type: Number

Set and Get issue information.

Get

-i, Get information of issue #45678.

redmine -i 45678

Set

-p, --percent

Set progress to 15%.

redmine -i 45678 -p 15

-m, --message

Set note.

redmine -i 45678 -m "my note"

-e, --estimated

Set estimated hours to 9.

redmine -i 45678 -e 9

Combining options

Set percent to 25% and Set note.

redmine -i 45678 -p 25 -m "my note"

Set percent to 30%, Set note and Set estimated hours to 5.

redmine -i 45678 -p 30 -m "my note" -e 5

Additional features

If you are using git and your branch is called issues#45678 then redmine-issues automatically recognize the issue id is 45678 and then not necessary that you indicate the issue id.

So to update this issue only write:

redmine -p 35

No need to specify the id of the issue.