get-random-quote
Version:
Gets a random quote for you.
27 lines (19 loc) • 775 B
Markdown
Gets a random quote for you using the [Forismatic API](https://forismatic.com/en/api/). Great for giving your team some inspiration after a build :grinning:.

```
import getRandomQuote from 'get-random-quote';
getRandomQuote
.then((quote) => {
console.log(quote);
//{
// author: 'Edwin Chapin',
// text: 'Every action of our lives touches on some chord that will vibrate in eternity.'
//}
});
```
`npm install get-random-quote`
`npm run test` or `ava`