Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujinlim/forbes-quote
get Forbes news quote of the day
https://github.com/yujinlim/forbes-quote
Last synced: 2 months ago
JSON representation
get Forbes news quote of the day
- Host: GitHub
- URL: https://github.com/yujinlim/forbes-quote
- Owner: yujinlim
- License: mit
- Created: 2016-02-02T02:01:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-02T02:20:47.000Z (almost 9 years ago)
- Last Synced: 2024-08-09T07:29:07.158Z (5 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Forbes Quote of the day [![Build Status](https://travis-ci.org/yujinlim/forbes-quote.svg?branch=master&style=flat-square)](https://travis-ci.org/yujinlim/forbes-quote)
> get Forbes news quote of the day## Install
```sh
npm i --save forbes-quote
```## Usage
```javascript
const getQuote = require('forbes-quote');getQuote()
.then((quote) => {
console.log(quote);
/**
* {
* "quote": "Teach self-denial and make its practice pleasure, and you can create for the world a destiny more sublime that ever issued from the brain of the wildest dreamer.",
* "author": "Sir Walter Scott",
* "url": "http://onforb.es/TK4kVr"
* }
*/
})
```## License
MIT © [Yu-Jin](https://github.com/yujinlim/forbes-quote/blob/master/LICENSE)