Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
google-news-rss
Advanced tools
A node (with browser support) module that searches Google News RSS Feed and returns a usable JSON response
🗞 A node module (with browser support) that searches Google News RSS Feed and returns a usable JSON response
This is an unofficial, super easy to use node module / API client that allows a user to fetch a Google News RSS feed based on search terms and returns an easy to use JSON response. google-news-rss
also supports in-browser requests.
Coverts ⬇️
{
title: "Are there really antioxidants in that juice? How to protect against food fraud.",
description: "Regrettably, they are examples of food fraud that are perpetrated on unsuspecting Americans. The global food industry loses $10 billion to $15 billion per year through food substitutions, dilutions and fake labels, according to the Grocery ...",
pubDate: "Wed, 08 Jun 2017 07:01:30 GMT",
thumbnailUrl: "//t1.gstatic.com/images?q=tbn:ANd9GcS7OWziKD2Lc3zReERlqVcffAcgIuzzq723AR4zF807dKuqhzMY6EUEpQyzwGzHXpE05gGtFHNC",
publisher: "Washington Post",
link: "http://news.google.com/news/url?sa=t&fd=R&ct2=us&usg=AFQjCNEeo82SxlrQZP5SzjugGtJHFt36_g&clid=c3a7d30bb8a4878e06b80cf16b898331&ei=rCJqWYjEINKMzgKc_YDgCQ&url=https://www.washingtonpost.com/lifestyle/wellness/are-there-really-antioxidants-in-that-juice-how-to-protect-against-food-fraud/2017/06/07/fec98462-4554-11e7-bcde-624ad94170ab_story.html"
}
$ npm install --save google-news-rss
const GoogleNewsRss = require('google-news-rss');
const googleNews = new GoogleNewsRss();
googleNews
.search('unicorns')
.then(resp => console.log(resp));
//
// [
// {
// title: 'Why don\'t unicorns exist? You asked Google – here\'s the answer ...',
// link: 'http://news.google.com/news/url?sa=t&fd=R&ct2=us&usg=AFQjCNGNR4Qg8LGbjszT1yt2s2lMXvvufQ&clid=c3a7d30bb8a4878e06b80cf16b898331&cid=52779522121279&ei=VQU7WYjiFoLEhQHIs4HQCQ&url=https://www.theguardian.com/commentisfree/2017/jun/07/why-dont-unicorns-exist-google',
// pubDate: 'Wed, 07 Jun 2017 07:01:30 GMT',
// description: 'Imagine for a second that you’re God. You’ve created the universe in six days (seven under EU working time directives). You’ve created millions of creatures of unimaginable grace, oddness and beauty',
// publisher: 'The Guardian',
// imgSrc: '//t2.gstatic.com/images?q=tbn:ANd9GcRa2NGl3_alXByd3kpnDDImMJFGeskk4Mf_AWZc-ohe_O8iEtmBs7hMxieldT_--jQWuDr4gQc'
// }
// ... 9 more articles
// ]
Type: class
Usage: new GoogleNewsRss()
Returns: Promise
that resolves n
formatted articles
Type: string
Search terms to search for within Google news. IE: ethereum,btc
Type: int
Default: 10
Number of results to be returned [1...30].
Type: string
Default: en
Language of the results within Google News. IE: pt-BR
Returns: Promise
that resolves 10 formatted articles
Type: object
Any additional query params that are appended to RSS url to refine the results. Please note, there aren't any officially documented parameters so your mileage may vary. Feel free to experiment with some of the params listed on this blog post provided by i-tweak.
Properties | Description | Example |
---|---|---|
title | Title of the article | Why don't unicorns exist? You asked Google – here's the answer ... - The Guardian |
link | Google news link to article | Article Link |
pubDate | Published date | Wed, 07 Jun 2017 07:01:30 GMT |
description | Short description of article | Why don't unicorns exist? You asked Google - here's the answer ... |
thumbnailUrl | Thumbnail Url. Omitted when not available. | //t2.gstatic.com/images?q=tbn:ANd9GcRa2NGl3_alXByd3kpnDDImMJFGeskk4Mf_AWZc-ohe_O8iEtmBs7hMxieldT_--jQWuDr4gQc |
publisher | Publisher of article | The Guardian |
MIT © Brandon Him
FAQs
A node (with browser support) module that searches Google News RSS Feed and returns a usable JSON response
The npm package google-news-rss receives a total of 20 weekly downloads. As such, google-news-rss popularity was classified as not popular.
We found that google-news-rss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.