Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
google-news
Advanced tools
JavaScript API for querying Google News, written in CoffeeScript.
GoogleNews = require('google-news')
googleNews = new GoogleNews()
track = 'Volvo'
googleNews.stream track, (stream) ->
stream.on GoogleNews.DATA, (data) ->
console.log 'Data Event received... '+ data.title
stream.on GoogleNews.ERROR, (error) ->
console.log 'Error Event received... '+ error
var GoogleNews, googleNews, track;
GoogleNews = require('google-news');
googleNews = new GoogleNews();
track = 'Volvo';
googleNews.stream(track, function(stream) {
stream.on(GoogleNews.DATA, function(data) {
return console.log('Data Event received... ' + data.title);
});
stream.on(GoogleNews.ERROR, function(error) {
return console.log('Error Event received... ' + error);
});
});
Peter Andreas Moelgaard (GitHub, Twitter)
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
FAQs
JavaScript API for querying Google News
The npm package google-news receives a total of 4 weekly downloads. As such, google-news popularity was classified as not popular.
We found that google-news 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.