anax

1.1.5 • Public • Published

Anax

NPM Version

an empirical spider framework, provides convenience for extracting data from specific websites.

Examples

looking for usage and examples

https://github.com/cooperhsiung/anax-examples

Installation

npm i anax -S

Dependencies

database

  • redis
  • mongodb

library

  • kue, message queue
  • request, http client
  • cheerio, html parser
  • mongoose, ORM

Concepts

models

constructors compiled from your target data's Schema definitions

const Schema = require('mongoose').Schema;
const itemSchema = Schema({
  name: {
    type: String,
    required: true,
    trim: true,
  },
 
  category: {
    type: String,
    required: true,
    trim: true,
  },
 
  price: {
    type: Number,
  },
 
  lastModified: {
    type: Date,
    required: true,
  },
});
 
const Product = mongoose.model('Product', itemSchema);
 
module.exports = [Product];

flows

workflow, connected by message queue step by step

let flow0 = {
  seed: true,
  name: 'getCateList',
  work: async function() {
    try {
      let cateList = await this.scrape('home');
      this.deliver('getItems', cateList);
    } catch (e) {
      console.error(e);
    }
  },
};
 
let flow1 = {
  name: 'getItems',
  work: async function(stuff, done) {
    try {
      let itemList = await this.scrape('getItems', stuff);
      this.output('Product', itemList);
    } catch (e) {
      done(e);
    }
  },
};
 
module.exports = [flow0, flow1];

scraps

build request and parse response

module.exports = {
  home: {
    build: params => ({
      /* request options*/
    }),
    parse: ({ $, ...params }) => {
      let l = [];
      $('select li').each((i, e) => {
        l.push({
          /* parse */
        });
      });
      return l;
    },
  },
 
  getItems: {
    build: params => ({
      /* request options*/
    }),
    parse: ({ $, ...params }) => {
      let l = [];
      $('select li').each((i, e) => {
        l.push({
          /* parse */
        });
      });
      return l;
    },
  },
};

env config

use .env for eg:

MONGO=mongodb://127.0.0.1:27017/anax
REDIS=redis://127.0.0.1:6379/0
PORT=3000

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.5
    1
    • latest

Version History

Package Sidebar

Install

npm i anax

Weekly Downloads

2

Version

1.1.5

License

MIT

Unpacked Size

10.4 kB

Total Files

11

Last publish

Collaborators

  • cooperhsiung