npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

roach

v0.1.2

Published

A very adaptable web crawler framework. Impossible to kill.

Downloads

135

Readme

Roach

A very adaptable web crawler framework. Impossible to kill.

Roach

Build Status

Getting Started

  1. Install the module via npm:
npm install roach

Usage

Single Document, Roach Filter, Multiple Transports

var Roach = require('roach');

var roach = new Roach();

// Use multiple transports with default options
roach.use('rabbitmq').use('mongodb');

// Add a job to get all the 'a' links from google.com
roach.addJob( 'http://google.com', 'google' ).filter( 'links' );

// run the job
roach.run();

Multiple Documents, Roach Filter, Multiple Transports

var Roach = require('roach'),
    Proxy = Roach.Proxy;

var roach = new Roach();

// Use multiple transports with default options
roach.use('rabbitmq').use('mongodb');

var proxy = new Proxy( 'http://google.com', 'google' );

proxy.filter('links')
     .each(function(url, index){
        roach.addJob(url, 'job:' + index)
             .filter('filters/xml_parser.js');
      })
     .run(function(){
        roach.run();
      });

Reading From File System, Custom Proxy & Parser Filters

Note: Custom filters need to end with .js (crappy I know, but it was tricky to automatically resolve your filters vs. our custom ones.)

var Roach = require('roach'),
    Proxy = Roach.Proxy;

var roach = new Roach();

var config = roach.config('config.json');

roach.use('redis', config.transports.redis);

var proxy = new Proxy( '/tmp', 'awesomesauce' );

// Use the Roach directory filter and a custom filter
// to grab every .txt file the '/tmp' directory
proxy.filter( 'directory' )
	 .filter( 'filters/text_file.js' )
	 .each(function(filepath, index){

	 	// Apply some custom filters to each job that 
	 	// gets created from each fetched file
	    roach.addJob(filepath, 'job:' + index)
	         .filter('filters/special_error.js')
	         .filter('filters/every_third_word.js');
	 })
	 .run(function(){
	    roach.run();
	 });

Architecture

Architecture

Data Flow

Data Flow

Job

TODO

Proxy

TODO

Parser

TODO

Filters

TODO

Transports

Roach has multiple transports that can be used to save your data somewhere. They all have default options that are specific to the individual transport. The options can be overridden by passing in an options object like so:

roach.use('rabbitmq', { host: '192.168.1.1', port: 8001 });

All the transports should adhere to the same basic interface and they pretty simple to implement so feel free to write your own!

Logger

This is as simple as it gets. It just spits stuff out to console. Useful for debugging or just piping results to a file.

Defaults:

{
    name : 'logger'
}

File

For saving to file system.

Defaults:

{
    path : path.resolve('/tmp'),
    name: 'file',
    filename: 'data:'
}

MongoDB

Saving to a single collection. No replica set support at the moment. Single DB only.

Defaults:

{
    protocol : 'mongo',
    name: 'mongodb',
    host : 'localhost',
    port : '27017',
    db: 'roach',
    collection: 'roach',
    safe: true
}

RabbitMQ

Obviously, saving to RabbitMQ.

Defaults:

{
    protocol : 'amqp',
    name: 'rabbitmq',
    host : 'localhost',
    port : '5672',
    exchange : {
        name: 'roach',
        options: {
            durable : true,
            confirm : true
        }
    },
    login: 'guest',
    password: 'guest',
    vhost: '/',
    routingKey: '#'
}

Redis (in progress)

Saving to Redis. Right now this is tightly coupled to our own use case, so it currently saves a key to a set and then saves the key + a score + the data to a sorted set. We plan on abstracting so that you can determine your save method or override the default.

Defaults:

{
    protocol : 'redis',
    name: 'redis',
    host : 'localhost',
    port : 6379
}

Utils

We provide a few helpful utility libraries wrapped up in the Roach.Utils namespace. At the moment they are:

License

Creative Commons 3.0 - Attribution Sharealike

You can remix, copy or use for both commercial and non-commercial products and services but you need to provide attribution for the original work in the source code to "PetroFeed Inc.". You must also share the original or any derivative under the same license. A description of the license can be found here.


Proudly brought to you by PetroFeed.

Pedro