1.0.5 • Published 7 years ago

fitbark-node-client v1.0.5

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

Codeship npm

fitbark-node-client

Node client for FitBark Web API

Installation

This library is distributed on npm. In order to add it as a dependency, run the following command:

$ npm install fitbark-node-client --save

Usage

Example: Get a dog by its name

const FitBark = require('fitbark-node-client');
const fitBark = new FitBark('your-access-token');

fitBark.getDog('Fido').then((dog) => {
  if (dog) {
      console.log(`retrieved ${dog.name}`);
  } 
}).catch((err) => {
    console.log('there was an error');
});
1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago