0.1.0 • Published 2 years ago

node-quotable v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

node-quotable

Wrapper around the quotable api

Install

npm i node-quotable

Usage

import { getRandomQuote } from 'node-quotable';

const data = await getRandomQuote();
console.log(data)

data is an object so you can get specific parts of it

import { getRandomQuote } from 'node-quotable';

const { content, author } = await getRandomQuote();

License

Apache 2.0