Skip to content

TakenKills/Quote-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

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

About

A npm package that gets random quotes!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors