Skip to content

Commit 10116d7

Browse files
committed
Update: Docs
1 parent f9a9184 commit 10116d7

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
English | [简体中文](https://github.com/coder-hxl/x-crawl/blob/main/docs/cn.md)
44

5-
x-crawl is a flexible nodejs crawler library.
5+
x-crawl is a flexible nodejs crawler library. It is used to batch crawl data, network requests and download file resources. Support crawling data asynchronously or synchronously. Because it runs on nodejs, it will be crawler-friendly for JS/TS developers.
66

77
If it helps you, you can give [x-crawl repository](https://github.com/coder-hxl/x-crawl) a Star support.
88

99
## Features
1010

11-
- Crawl pages, JSON, file resources, etc. with simple configuration.
12-
- The built-in puppeteer crawls the page, and uses the jsdom library to parse the page.
1311
- Support asynchronous/synchronous way to crawl data.
1412
- Support Promise/Callback method to get the result.
15-
- Polling function, timing crawling.
1613
- Anthropomorphic request interval.
17-
- Written in TypeScript, has type hints, provides generics.
14+
- Crawl pages, JSON, file resources, etc. with simple configuration.
15+
- Polling function, timing crawling.
16+
- The built-in puppeteer crawls the page and uses the jsdom library to parse the page.
17+
- Written in TypeScript, has type hints, and provides generics.
1818

1919
## Relationship with puppeteer
2020

docs/cn.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
[English](https://github.com/coder-hxl/x-crawl#x-crawl) | 简体中文
44

5-
x-crawl 是一个灵活的 nodejs 爬虫库。
5+
x-crawl 是一个灵活的 nodejs 爬虫库。用来批量爬取数据、网络请求以及下载文件资源。支持采用异步或同步的方式爬取数据。因跑在 nodejs 上,所以会对 JS/TS 的开发者做爬虫友好。
66

77
如果对您有帮助,可以给 [x-crawl 存储库](https://github.com/coder-hxl/x-crawl) 点个 Star 支持一下。
88

99
## 特征
1010

11-
- 只需简单的配置即可抓取页面、JSON、文件资源等等。
12-
- 内置 puppeteer 爬取页面 ,并用采用 jsdom 库对页面解析。
1311
- 支持 异步/同步 方式爬取数据。
1412
- 支持 Promise/Callback 方式获取结果。
15-
- 轮询功能,定时爬取。
1613
- 拟人化的请求间隔时间。
17-
- 使用 TypeScript 编写,拥有的类型提示,提供泛型。
14+
- 只需简单的配置即可抓取页面、JSON、文件资源等等。
15+
- 轮询功能,定时爬取。
16+
- 内置 puppeteer 爬取页面 ,并用采用 jsdom 库对页面解析。
17+
- 使用 TypeScript 编写,拥有类型提示,提供泛型。
1818

1919
## 跟 puppeteer 的关系
2020

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "x-crawl",
4-
"version": "3.2.0",
4+
"version": "3.2.1",
55
"author": "coderHXL",
66
"description": "x-crawl is a flexible nodejs crawler library. ",
77
"license": "MIT",

publish/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
English | [简体中文](https://github.com/coder-hxl/x-crawl/blob/main/docs/cn.md)
44

5-
x-crawl is a flexible nodejs crawler library.
5+
x-crawl is a flexible nodejs crawler library. It is used to batch crawl data, network requests and download file resources. Support crawling data asynchronously or synchronously. Because it runs on nodejs, it will be crawler-friendly for JS/TS developers.
66

77
If it helps you, you can give [x-crawl repository](https://github.com/coder-hxl/x-crawl) a Star support.
88

99
## Features
1010

11-
- Crawl pages, JSON, file resources, etc. with simple configuration.
12-
- The built-in puppeteer crawls the page, and uses the jsdom library to parse the page.
1311
- Support asynchronous/synchronous way to crawl data.
1412
- Support Promise/Callback method to get the result.
15-
- Polling function, timing crawling.
1613
- Anthropomorphic request interval.
17-
- Written in TypeScript, has type hints, provides generics.
14+
- Crawl pages, JSON, file resources, etc. with simple configuration.
15+
- Polling function, timing crawling.
16+
- The built-in puppeteer crawls the page and uses the jsdom library to parse the page.
17+
- Written in TypeScript, has type hints, and provides generics.
1818

1919
## Relationship with puppeteer
2020

publish/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "x-crawl",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"author": "coderHXL",
55
"description": "x-crawl is a flexible nodejs crawler library.",
66
"license": "MIT",

0 commit comments

Comments
 (0)