1.0.3 • Published 7 years ago

instalike-me v1.0.3

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

instalike-me

NodeJS module for http://instalike.me API

Install

npm install instalike-me

Usage

const InstaLikeMe = require('instalike-me');
const instalikeme = new InstaLikeMe('YOUR-API-KEY');

instalikeme.api('ping', {}, function (error, response) {
  
  if (error) {
    return console.error(error);
  }
  
  console.log(response);
  
});