node-dogandcat

1.1.0 • Public • Published

Description:

A simple node package to get a image and a fact about cats and dogs.

Installation:

npm i node-dogandcat --save

Usage:

const random = require('node-dogandcat');
random.getRandomDog() // Returns a promise containing the image url that you can resolve.
.then(result => console.log(result))
.catch(err => console.error(err));
 
random.getRandomDogFact() // Returns a promise containing the random dog fact that you can resolve. You can also specify the amount to get as a function argument, but the default is 1, if the amount is more than 1, it will return an array.
.then(result => console.log(result))
.catch(err => console.error(err));
 
random.getRandomCatFact() // Returns a promise containing the random cat fact that you can resolve. You can also specify the amount to get as a function argument, but the default is 1, if the amount is more than 1, it will return an array.
.then(result => console.log(result))
.catch(err => console.error(err));
 
random.getRandomCat() // Returns a promise containing the image url that you can resolve.
.then(result => console.log(result))
.catch(err => console.error(err)); 

Package Sidebar

Install

npm i node-dogandcat

Weekly Downloads

2

Version

1.1.0

License

ISC

Unpacked Size

4.55 kB

Total Files

4

Last publish

Collaborators

  • snavellet