1.0.7 • Published 7 years ago

thecatapi-helper v1.0.7

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

TheCatAPI helper

Build Status Standard - JavaScript Style Guide npm version saythanks

This node module provides you some help so you can enjoy cats.

Installation

npm install thecatapi-helper --save

linkbuilder

linkbuilder(category, api_key, type = "jpg", size = "full")

category See full list of category here: http://thecatapi.com/api/categories/list example: "boxes" to show cat in the box

api_key Get you API key here: http://thecatapi.com/api-key-registration.html

type Type of file which you would like TheCatAPI to give you. ("png", "jpg", "gif")

size File size. ("small", "med", "full").

Example

var thecatapi = require('thecatapi-helper')


// just an simple link with no api, no argument
var simpleLink = thecatapi.linkbuilder()
console.log(simpleLink)

// with category and api
var normalLink = thecatapi.linkbuilder('caturday', 'MTM1MDM1')
console.log(normalLink)

// link with category, api, file type ,size,
var customizeLink1 = thecatapi.linkbuilder('caturday', 'MTM1MDM1', 'jpg', 'full')
var customizeLink2 = thecatapi.linkbuilder('caturday', 'MTM1MDM1', 'png', 'med')
var customizeLink3 = thecatapi.linkbuilder('caturday', 'MTM1MDM1', 'gif', 'small')
console.log(customizeLink1)
console.log(customizeLink2)
console.log(customizeLink3)

Disclaimer:

I am not author nor partner of http://thecatapi.com/ , but a cat lover.

1.0.7

7 years ago

1.0.6

7 years ago

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