Scrape titles of articles from buzz feed.
npm install buzzfeed-headlinesGet a bunch of the most recent headlines from buzzfeed.com.
``bash`
$ npm install buzzfeed-headlines
`javascript
var buzzfeed = require('buzzfeed-headlines');
buzzfeed(function(err, headlines){
console.log(headlines);
// an array of rediculous headlines
});
`
Takes on argument, a node-style callback with the second argument being an array of titles of buzzfeed posts.
Tests run using mocha
`bash``
$ npm test