3.5.6 • Published 3 years ago

randomquote-api v3.5.6

Weekly downloads
129
License
BSD 2-Clause Lice...
Repository
github
Last release
3 years ago

What is this?

randomquote-api is a light weight npm module that gets you random quotes from a collection of quotes!

installation

npm i randomquote-api or yarn add randomquote-api

How to use :

const Quotes = require("randomquote-api");

// To get one random Quote you do

const randomquote = Quotes.randomQuote();
console.log(randomquote);

// to get Ten random quotes you do

const randomTen = Quotes.randomTen();
console.log(randomTen);

// to get a number amount of quotes by who said them

const getbyauthor = Quotes.getbyauthor("J.R.R. Tolkien", 10);
console.log(getbyauthor);

Stuck on object Object ?

try mapping it!

const Quotes = require("randomquote-api");
const randomTen = Quotes.randomTen();

console.log(randomTen.map((q) => q.quote).join("\n"));

this also works the same for the getbyauthor() function.

Options

For the quotes itself you can use

  • quote : Get the quote.
  • author : Get who wrote/said the quote.
  • id : Get the number of the quote.

Options for the "getbyauthor(name, n)" function

  • name : the name of the person who wrote the quote.
  • n : the number of quotes you want.

Pull requests

Pull requests are open to anybody willing to contribute.

Need any help?

Join my discord server, and go to the general support channel! https://discord.gg/MACqYvy7cX Or you can contact me on discord TakenKills#8990

3.5.6

3 years ago

3.5.5

3 years ago

3.5.4

3 years ago

3.5.3

3 years ago

3.5.2

3 years ago

3.5.1

3 years ago

3.5.0

3 years ago

3.4.8

3 years ago

3.3.8

3 years ago

3.2.8

3 years ago

3.2.7

3 years ago

3.2.6

3 years ago

3.2.5

3 years ago

2.2.5

3 years ago

2.2.4

3 years ago

1.1.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago