Scraping made easy.
scrapy-chan
offers multiple modular utilities for scraping.
They can be combined together to easily build and execute effective scraping.
npm i --save scrapy-chan
let SC = require('scrapy-chan');
SC.Url('news.ycombinator.com')
.pipe( SC.ScrapeSinglePageWithoutAjax() )
.pipe( SC.Parse() )
.pipe( SC.Print() )
.on('end', ()=>{
// end
})
.on('error', (err)=>{
// err
});
TBD