1.0.4 • Published 6 years ago

truepixabay v1.0.4

Weekly downloads
11
License
MIT
Repository
github
Last release
6 years ago

TruePixabay

Typescript module to interact with the Pixabay API.

Example usage:

import { Client } from 'truepixabay'

const client = new Client({ token: 'YOUR-SUPER-SECRET-TOKEN' })

client.getImages({ q: 'fox' })
	.then(console.log)
	.catch(console.error)
const { Client } = require('truepixabay');

const client = new Client({ token: 'YOUR-SUPER-SECRET-TOKEN' })

client.getImages({ q: 'fox' })
	.then(console.log)
	.catch(console.error)
1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago