Web scraping and HTML-reprocessing. The easy way.
npm install ineed!logo

Web scraping and HTML-reprocessing. The easy way.
ineed allows you collect useful data from web pages using simple and nice API. Let's collect images, hyperlinks, scripts and stylesheets from http://google.com:
``js
var ineed = require('ineed');
ineed.collect.images.hyperlinks.scripts.stylesheets.from('http://google.com',
function (err, response, result) {
console.log(result);
});
`
Also, it can be used to build HTML-reprocessing pipelines (like jch/html-pipeline but for Node) with elegance. E.g. we have the following html:`html`
This is an H1
=============
* Red
* Green
* Blue
Let's render it's