jq-scrapper
v1.1.0
Published
Web page scrapper with server-side jQuery support
Downloads
6
Readme
scrapper
NodeJS HTML page scrapper with jQuery-like selectors on server side
Installation
npm install scrapper
Usage
scrapper.get('http://yandex.ru/yandsearch', function($){
console.log($('body').text())
}, {text: 'NodeJS!'}, {'User-Agent': 'Googlebot'});
scrapper.post('http://google.com', function($){
console.log($('body').text())
}, {q: 'NodeJS!'}, {'User-Agent': 'Yandex Bot'});
scrapper.html('<ul><li>NodeJS</li></ul>', function($){
console.log($('li').text())
});