Socket
Socket
Sign inDemoInstall

animality

Package Overview
Dependencies
7
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    animality

A simple API wrapper that generates images & facts of any animal


Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Install size
488 kB
Created
Weekly downloads
 

Readme

Source

animality

Easy to use random animal api. Get facts and images of numerous animals!

Installation

Use the package manager npm to install random-api

$ npm i animality

OR

$ npm install animality

Require

const animality = require("animality")

Usage

Animals: cat, dog, bird, panda, redpanda, koala, fox, whale, kangaroo, bunny

Get information of a specific animal

const animality = require("animality")

const animals = ["cat", "dog", "bird", "panda", "redpanda", "koala", "fox", "whale", "kangaroo", "bunny"] //all available animals

const animal = "cat" //replace cat with any animal you want from the array "animals"

animality.getAsync(animal).then(data => {
  console.log(data) //returns an object
})

Output:

{
  image: "random cat image link",
  fact: "random cat fact"
}

Get information of a random Animal

const animality = require("animality")

const animal = "random" 

animality.getAsync(animal).then(data => {
  console.log(data) //returns an object
})

Output:

{
  name: "animal name"
  image: "random animal image link",
  fact: "random animal fact"
}

Keywords

FAQs

Last updated on 04 May 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc