compare-api

1.0.2 • Public • Published

A simple tool to listen for changes to the endpoint API!

Install

yarn add compare-api 
//or
npm i compare-api

Usage

const CompareAPI = require('compare-api');
const APIListener = new CompareAPI({
    apiUrl: 'https://assistantscenter.com/api/test/',
    timeout: 10000,
    successStatus: 200,
    onCheck: () => console.log('Checking!'),
});

APIListener.start();

APIListener.events.on('dataChanged', ({oldData, newData}) =>{
    console.log(oldData, newData);
});

APIListener.events.on('fetchError', ({message, code}) =>{
    console.log(message, code);
});

Screenshot from usage sample

License

The project is under MIT licence.

Readme

Keywords

none

Package Sidebar

Install

npm i compare-api

Weekly Downloads

4

Version

1.0.2

License

MIT

Unpacked Size

4.3 kB

Total Files

5

Last publish

Collaborators

  • breftejk