Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

google-news

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-news

JavaScript API for querying Google News

  • 1.4.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Google News API

JavaScript API for querying Google News, written in CoffeeScript.  

NPM Travis

 


Documentation

Usage (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

Usage (JavaScript)

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);
  });
});

Author

Peter Andreas Moelgaard (GitHub, Twitter)

License

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Keywords

FAQs

Package last updated on 26 Feb 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc