angusfretwell / jira-got

Convenience wrapper for `got` to interact with the Jira API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jira-got

Travis Code Climate Codecov NPM Version NPM Downloads

Convenience wrapper for got to interact with the Jira API

Install

$ npm install --save jira-got

Usage

import jira from 'jira-got';

jira('user?username=angus', { token: 'foo' }).then(res => {
  console.log(res.body.name);
  //=> 'angus'
});

API

Same as got (including the stream API and aliases), but with some additional options:

  • token

    Base64 encoded Jira username and password (echo -n username:password | base64).

    Can be set globally with the JIRA_USERNAME and JIRA_PASSWORD environment variables.

  • endpoint

    Default: https://jira.atlassian.com/rest/api/latest/

    Can be set globally with the JIRA_ENDPOINT environment variable.

License

The MIT License (MIT)

Copyright (c) 2016 Angus Fretwell

About

Convenience wrapper for `got` to interact with the Jira API

License:MIT License


Languages

Language:JavaScript 100.0%