1.1.3 • Published 9 years ago

bing-news v1.1.3

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

Bing News API

JavaScript API for querying Bing News.  


Usage (CoffeeScript)

BingNews = require('bing-news') bingNews = new BingNews()

track = 'Volvo'

bingNews.stream track, (stream) ->

	stream.on BingNews.DATA, (data) ->
  		console.log 'Data Event received... '+ data.title

	stream.on BingNews.ERROR, (error) ->
  		console.log 'Error Event received... '+ error

Usage (JavaScript)

(function() {

  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);
    });
  
    return stream.on(GoogleNews.ERROR, function(error) {
      return console.log('Error Event received... ' + error);
    });
  });

}).call(this);

Author

Peter Andreas Moelgaard (GitHub, Twitter)

License

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

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago