targetprocess-api

0.3.0 • Public • Published

targetprocess-api

Build Status Coverage Known Vulnerabilities

Sample usage

const factory = require("targetprocess-api");
const tp = factory(config);

tp.create("Projects", {Name: "My Project"})
    .then(function (entity) {
        // ...
    });

tp.retrieve("UserStories").take(10).get()
    .then(function (items) {
        // ...
    });

tp.update("Bugs", {Id: 3, Name: "My bug"});

tp.remove("Releases", 12);

Readme

Keywords

Package Sidebar

Install

npm i targetprocess-api

Weekly Downloads

1

Version

0.3.0

License

MIT

Unpacked Size

51.4 kB

Total Files

16

Last publish

Collaborators

  • go-on-blog