Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alyssais/bingnews
A Node library for getting news data from Bing
https://github.com/alyssais/bingnews
Last synced: 5 days ago
JSON representation
A Node library for getting news data from Bing
- Host: GitHub
- URL: https://github.com/alyssais/bingnews
- Owner: alyssais
- Created: 2013-10-05T17:54:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-02-23T00:23:11.000Z (over 6 years ago)
- Last Synced: 2024-11-07T14:54:37.272Z (7 days ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
bingnews
========A Node library for getting news data from Bing
Installation
------------npm install bingnews
Usage
-----```javascript
var bingNews = require("bingnews")("API_KEY")bingNews({ "query": "rabbits", "category": "politics" }, function(error, articles) {
console.log(articles)
})
```