1.1.0 • Published 11 years ago

jq-scrapper v1.1.0

Weekly downloads
8
License
-
Repository
github
Last release
11 years ago

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())
});