Socket
Socket
Sign inDemoInstall

crawler4node

Package Overview
Dependencies
181
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    crawler4node

Crawler4nodejs is an open source web crawler for Node.js which provides a simple interface for crawling the Web.


Version published
Weekly downloads
1
Maintainers
1
Install size
27.2 MB
Created
Weekly downloads
 

Readme

Source

Crawler4nodejs

Crawler4nodejs is an open source web crawler for Node.js which provides a simple interface for crawling the Web.

Table of content

  • Installation
  • Run
  • Quickstart
  • License

Installation

npm install crawler4node

RUN

ts-node run.ts

Quickstart

You need to create a crawler class that extends Crawler. This class can override the _process_data() function.

Example

import Bot from "crawler4node"
const Cheerio = require('cheerio')

export default class MyBot extends Bot{

    _process_data(url,html){
        if (html && url){
            const $ = Cheerio.load(html)
            this.fs.appendFileSync("url.txt", url +"\n" , () => { })
            let title = $(this.config.data_selector.title).text();
            if (title)
                this.fs.appendFileSync("test.txt", url + "\n" + title+ "\n",()=>{})
        }
    }
    // process error url
    _store_err_url(url){
        this.fs.appendFileSync("error.txt", url + "\n", () => { })
    }

}
let tuoi_tre_config = {
    name: 'crawl-storage-1',
    origin_url: 'https://tuoitre.vn',
    should_visit_prefix: ['https://tuoitre.vn/'],
    page_data_prefix: ['https://tuoitre.vn/'],
    max_depth:3,
    time_delay: 300  //3 request per seconds
    data_selector:{
        title: "#main-detail > div.w980 > h1"
    }
};

let crawler = new MyBot(tuoi_tre_config, logger);
crawler.start();

Crawl depth

By default there is no limit on the depth of crawling. But you can limit the depth of crawling. For example, assume that you have a seed page "A", which links to "B", which links to "C", which links to "D". So, we have the following link structure:

A -> B -> C -> D

Since, "A" is a seed page, it will have a depth of 0. "B" will have depth of 1 and so on. You can set a limit on the depth of pages that crawler4j crawls. For example, if you set this limit to 2, it won't crawl page "D". To set the maximum depth you can use:

let config = {
    ...
    max_depth:3
};
let crawler = new ACrawler(config, logger);

License

Copyright (c) 2019 HongLM

FAQs

Last updated on 15 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc