beaugunderson / news-text

📰 get news text from Google News, CNN, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

news-text

Retrieve the article text from several news sites using either the article module or Diffbot (if a Diffbot key is specified).

var simple =  new require('news-text').Simple();

simple.reutersUsNews(function (err, articles) {
  articles.forEach(function (article) {
    console.log(article);
  });
});

Google News is searchable:

var googleNews = new require('news-text').GoogleNews();

googleNews.searchArticles('taylor swift', function (err, articles) {
  articles.forEach(function (article) {
    console.log(article);
  });
});

About

📰 get news text from Google News, CNN, etc.


Languages

Language:JavaScript 100.0%