A reactive framework for asynchronous web crawling.
npm install sitequery```
_
(_) _
___ _ _| |_ _____ ____ _ _ _____ ____ _ _
/___)| |(_ _)| ___ | / _ || | | || ___ | / ___)| | | |
|___ || | | |_ | ____|| |_| || |_| || ____|| | | |_| |
(___/ |_| \__)|_____) \__ ||____/ |_____)|_| \__ |
|_| (____/
A reactive framework for asynchronous web crawling.
is a reactive webcrawling framework that enables
web crawling through server-side execution of jQuery selectors. sitequery
uses rx.js to
model crawls as async sequence of pages that map to a async sequence of jQuery selected page elements.Installation
$3
sitequery requires a redis installation see: http://redis.io/download$3
[sudo] npm install sitequeryFeatures
sitequery has two main abstractions SiteCrawl and SiteQuery which provide the following features: - Web crawls can be paramerized to only go n levels deep
- Configurable crawl timeout
- Web crawls use a redis store to track visitation and insure a web crawl is cycle-free (no web page is crawled more than once for a given
SiteCrawl instance)
- Any valid jQuery selector can be executed across an entire website (web crawl sequence)
- Support for the latest jQuery versionUsage
$3
(From: /examples/hello-crawl.js)Allows you to crawl to a depth of n into a website
`javascript
var SiteCrawl = require('../lib/sitecrawl').SiteCrawl;// create a new SiteCrawl of depth 2 with a delay of 1s between next page and will only run for 10s
// Note: Webcrawling is delayed and will not be executed
// until Subscription
var siteCrawl = new SiteCrawl({url:'http://loku.com', maxDepth:2, delay:1000, maxCrawlTime:10000});
// ask for the observable sequence and subscribe for the CrawlResult(s)
siteCrawl.toObservable().Subscribe(function(crawlResult) {
console.log(crawlResult.crawlLink.url.href);
},
// on err
function(exn){
console.log('Ooo dem Dukes...with exception:' + exn);
},
// on crawl complete
function(){
console.log('SiteCrawl complete');
});
`$3
(From: /examples/hello-query.js)Execute jQuery selector to a depth of n on a website
`javascript
var SiteQuery = require('../lib/sitequery').SiteQuery;// create a new SiteQuery of depth 2 with a delay of 1s between next page crawl
// selecting for
img elements on each page
// Note: Webcrawling is delayed and will not be executed
// until Subscription
var siteQuery = new SiteQuery({url:'http://loku.com', maxDepth:2, delay:1000}, 'img');// ask for the observable sequence and subscribe for selected jQuery element(s)
siteQuery.toObservable().Subscribe(function(result.elem) {
// output the img src
console.log(result.elem.attr('src'));
},
// on err
function(exn) {
console.log('Something blowd up with exception:' + exn);
},
// on crawl complete
function() {
console.log('SiteQuery complete');
});
`Credits
- David Trejo for original jQuery web crawler concept
- Matt Podwysocki for detailed examples and documentation of rx.js
- Jeremy Van Gogh the original project lead for rx.jsToDo
- ~~Make practical~~ - Big performance improvements with version post 0.1.3
- ~~Obey robots.txt~~
- Performance profiling
- Experiment with jquip
- Add post-processing backends
- Graceful errors/degradation for incomplete data/dom for SiteCrawl` Copyright (c) Loku. All rights reserved. The use and
distribution terms for this software are covered by the Eclipse
Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
which can be found in the file epl-v10.html at the root of this
distribution. By using this software in any fashion, you are
agreeing to be bound by the terms of this license. You must
not remove this notice, or any other, from this software.