1.4.6 • Published 10 years ago

google-news v1.4.6

Weekly downloads
30
License
Apache-2.0
Repository
github
Last release
10 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

10 years ago

1.4.5

10 years ago

1.4.4

10 years ago

1.4.3

10 years ago

1.4.2

10 years ago

1.4.1

10 years ago

1.4.0

10 years ago

1.3.8

10 years ago

1.3.7

10 years ago

1.3.6

10 years ago

1.3.5

10 years ago

1.3.4

10 years ago

1.3.3

10 years ago

1.3.2

10 years ago

1.3.1

10 years ago

1.3.0

10 years ago

1.2.4

10 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago