0.0.1 • Published 7 years ago

vsts-rest-ts v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Build Status dependencies Status devDependencies Status Coverage Status npm version MIT license

vsts-rest-ts

Typescript library for working with VSTS/TFS REST API

Installation

yarn add vsts-rest-ts

Example

import VSTSRestClient from "vsts-rest-ts";

const client = new VSTSRestClient(
    {
        endpoint: 'https://company.visualstudio.com',
        password: 'personal access token',
        project: 'OurProject',
        username: 'jimbob@company.com'
    },{
        error: console.log,
        info: console.log,
        verbose: console.log,
        warn: console.log
    });