-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathcustom-exporter.js
34 lines (27 loc) · 862 Bytes
/
custom-exporter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const { inspect } = require('util');
const HCCrawler = require('headless-chrome-crawler');
const BaseExporter = require('headless-chrome-crawler/exporter/base');
const FILE = './tmp/result';
// Create a new exporter by extending BaseExporter interface
class InspectExporter extends BaseExporter {
constructor(settings) {
super(settings);
if (!this._settings.depth) this._settings.depth = 2;
}
writeLine(result) {
const line = inspect(result, { depth: this._settings.depth, breakLength: Infinity });
this._stream.write(`${line}\n`);
}
writeHeader() {}
writeFooter() {}
}
const exporter = new InspectExporter({
file: FILE,
depth: 1,
});
(async () => {
const crawler = await HCCrawler.launch({ exporter, maxDepth: 2 });
await crawler.queue('https://example.com/');
await crawler.onIdle();
await crawler.close();
})();