Random Quotes generator with author names and images.
npm install quotes-goRandom Quotes generator with author names and images.
Use the package manager npm to install quotes-go
``bash`
npm install quotes-go
##### Import:
``
import quotesGo from "quotes-go";
##### Get Random Quote:
``
const randomQuote = quotesGo.getRandomQuote();
// Returns The following Object
> {
text: "Never give up. Today is hard, tomorrow will be worse, but the day after tomorrow will be sunshine.",
id: "379",
author: {
name: "Jack Ma",
shortDesc: "Chinese business magnate",
avatar: "https://etimg.etb2bimg.com/photo/68888260.cms"
}
}
##### Complete Authors List:
``
const authorsList = quotesGo.getAuthorsList();
##### Quotes from specified author:
```
const authorQuotes = quotesGo.getAuthorQuotes("steve_jobs");
Please make sure to update tests as appropriate.