Socket
Socket
Sign inDemoInstall

google-news

Package Overview
Dependencies
60
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    google-news

JavaScript API for querying Google News


Version published
Weekly downloads
29
increased by222.22%
Maintainers
1
Install size
7.97 MB
Created
Weekly downloads
 

Readme

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

Last updated on 26 Feb 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc