0.1.11 • Published 5 years ago

gx-redmine v0.1.11

Weekly downloads
9
License
ISC
Repository
github
Last release
5 years ago

ES7 async wrapper for node-redmine package

This is a wrapper for the node-redmine package in NPM that can be used with the ES7 async-await pattern, instead of using callbacks.

Documentation

For all documentation, please see the documentation for the node-redmine package and from Redmine's REST API.

Installation

To install gx-redmine, simply:

npm install gx-redmine

Usage

import RedmineAsync = require("gx-redmine");

const hostname = process.env.REDMINE_HOST || 'http://localhost';
const config = {
  apiKey: process.env.REDMINE_APIKEY || '<your_redmine_rest_key>'
};
const redmine = new RedmineAsync(hostname, config);

// retrieve issues
const issues = await redmine.issues({limit: 2});

Supported features for Redmine REST API

ResourceStatusAvailabilitySupported
IssuesStable1.0
ProjectsStable1.0
Project MembershipsAlpha1.4
UsersStable1.1
Time EntriesStable1.1
NewsPrototype1.1
Issue RelationsAlpha1.3
VersionsAlpha1.3
Wiki PagesAlpha2.2
QueriesAlpha1.3
AttachmentsBeta1.3
Issue StatusesAlpha1.3
TrackersAlpha1.3
EnumerationsAlpha2.2
Issue CategoriesAlpha1.3
RolesAlpha1.4
GroupsAlpha2.1
Custom FieldsAlpha2.4
SearchAlpha3.3N/A

Feedback

Feedback, bug reports and pull requests are welcome. See the linked github repository.

Links

Notice

  • node-redmine only supports using the JSON format.

version

0.1.11

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago