tarantula

v0.2.1
nodejs crawler/spider which provides a simple interface for crawling the Web
spider crawler scraper phantom phantomjs

node-tarantula

nodejs crawler/spider which provides a simple interface for crawling the Web. Its API has been inspired by crawler4j.

Quick Examples

var brain = {

    legs: 8,

    shouldVisit: function(uri) {
        return true;
    }

};

var tarantula = new Tarantula(brain);

tarantula.on('data', function (uri) {
      console.info('200', uri);
});

tarantula.on('done', function() { 
    console.log('done'); 
});

tarantula.start(["http://stackoverflow.com"]);

Phantom Usage

If you would like to use the included PhantomJS plugin, you'll need to install the PhantomJS app (it is not an npm module).

  1. You can download PhantomJS on their website.
  2. It's also on popular OS Package Managers: brew install phantomjs, apt-get install phantomjs
npm i tarantula

Metadata

  • Unknown
  • Whatever
  • George Politis
  • released 4/18/2014

Downloads