1.1.0 • Published 4 years ago

quotegarden v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

QuoteGarden

A NPM Package for quotes. The database currently includes more than 75000 quotes.

QuoteGarden library is just wrapper around https://github.com/pprathameshmore/QuoteGarden

Install

npm i quotegarden

Usage

Get random quote

const { randomQuote, authorQuotes, getQuotes, searchQuotes } = require("quotegarden");

randomQuote()
  .then((quote) => {
    console.log(quote);
  })
  .catch((error) => {
    console.log(error);
  });

Contributing

All feedback and contributions are welcome!