1.0.1 • Published 7 years ago

api-promise v1.0.1

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

api-promise

Build Status js-standard-style npm version Coverage Status

Helper for fast API consuming in promises.

Installing

npm install api-promise --save

Usage

const ap = require('api-promise')
const github = ap('api.github.com', 'GITHUB-TOKEN')

github('POST', '/some/api/path', { param: 'value' })
  .then(res => {
    // do something with the response
  })
  .catch(err => {
    // do something with the error
  })