nbc-reader
v1.0.5
Published
Reads an NBC article from nbcnews.com
Downloads
4
Readme
nbc-reader
Reads an NBC article from nbcnews.com
Install
npm install nbc-reader --save
Use
var NBCReader = require('nbc-reader');
var nbcreader = new NBCReader();
// Promise
nbcreader.read('http://www.nbcnews.com/business/consumer/lumber-liquidators-pleads-guilty-environmental-crimes-n449921').then(function(article) {
// Do Something with Article
});
// Callback
nbcreader.read('http://www.nbcnews.com/business/consumer/lumber-liquidators-pleads-guilty-environmental-crimes-n449921', function(article) {
// Do Something with Article
});
Article
var Article = {
title: '',
datetime: '',
body: {
clean: '',
markdown: ''
},
images: [
{
full: ''
}
],
source: ''
};
title The title of the Article. What appears in the h1 on the page.
datetime
The datetime with timezone of the last update of the article. Format: YY-mm-dd H:i:s GMT
. The datetime will always be GMT+0000
.
body The body of the article. Comes in two formats. clean and minimal. The clean format removes all html elements and separates paragraphs by two newlines. Markdown is a markdown version of the text
images
An array of image urls found in the body. Comes in sizes full
for each image.
source The url of the nbc article.