1.4.6 • Published 9 years ago

google-news v1.4.6

Weekly downloads
30
License
Apache-2.0
Repository
github
Last release
9 years ago

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

1.4.6

9 years ago

1.4.5

9 years ago

1.4.4

9 years ago

1.4.3

9 years ago

1.4.2

9 years ago

1.4.1

9 years ago

1.4.0

9 years ago

1.3.8

9 years ago

1.3.7

9 years ago

1.3.6

9 years ago

1.3.5

9 years ago

1.3.4

9 years ago

1.3.3

9 years ago

1.3.2

9 years ago

1.3.1

9 years ago

1.3.0

9 years ago

1.2.4

9 years ago

1.2.3

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago