@moqada/simple-api-client
TypeScript icon, indicating that this package has built-in type declarations

0.5.0 • Public • Published

simple-api-client

Greenkeeper badge

NPM version Build Status Coverage Status Dependency Status DevDependency Status License

Simple API Client for JavaScript.

WIP

Installation

npm install --save @moqada/simple-api-client

Usage

JavaScript

import SimpleAPIClient from '@moqada/simple-api-client';

class APIClinet extends SimpleAPIClient {

  constructor({token, custom}: {token: string, custom: string}) {
    super({endpoint: 'http://api.example.com/v1'});
    this.token = token;
    this.custom = custom;
  }

  getDefaultOptions(): Object {
    return {
      headers: {
        'Authorization': `Bearer ${this.token}`,
        'X-Custom-Header': `${this.custom}`
      }
    };
  }

  toResponse(error: ?Object, response: ?Object): Object {
    if (error) {
      return {error};
    }
    return {
      body: response.body
    };
  }

  getUsers(query): Promise<{body: Object}, {error: Object}> {
    return this.get('/users', {query});
  }
}

const clinet = new APIClinet({token: 'xxxxxxxyyyyy', custom: 'foobar'});
client.getUsers({offset: 20, limit: 10}).then(({body}) => {
  console.log(body);
}).catch(({error}) => {
  console.error(error);
}):

TypeScript

A import style is different from JavaScript.

import {SimpleAPIClient} from '@moqada/simple-api-client';

Todo

  • [ ] Test
  • [x] Support TypeScript (experimental)

Related

Readme

Keywords

Package Sidebar

Install

npm i @moqada/simple-api-client

Weekly Downloads

21

Version

0.5.0

License

MIT

Unpacked Size

19.4 kB

Total Files

7

Last publish

Collaborators

  • moqada