generative-bayesian-network 2.0.0 → 2.0.2-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</h1>
|
|
10
10
|
|
|
11
11
|
<p align=center>
|
|
12
|
-
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/v/fingerprint-injector/
|
|
12
|
+
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/v/fingerprint-injector/latest.svg" alt="NPM dev version" data-canonical-src="https://img.shields.io/npm/v/fingerprint-injector/next.svg" style="max-width: 100%;"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/dw/fingerprint-injector" alt="Downloads" data-canonical-src="https://img.shields.io/npm/dw/fingerprint-injector" style="max-width: 100%;"></a>
|
|
14
14
|
<a href="https://discord.gg/jyEM2PRvMU" rel="nofollow"><img src="https://img.shields.io/discord/801163717915574323?label=discord" alt="Chat on discord" data-canonical-src="https://img.shields.io/discord/801163717915574323?label=discord" style="max-width: 100%;"></a>
|
|
15
15
|
<a href="https://github.com/apify/fingerprint-suite/actions/workflows/test-and-release.yml"><img src="https://github.com/apify/fingerprint-suite/actions/workflows/test-and-release.yml/badge.svg?branch=stable" alt="Build Status" style="max-width: 100%;"></a>
|
|
@@ -30,7 +30,7 @@ With the help of `fingerprint-suite` you can generate and inject browser fingerp
|
|
|
30
30
|
- [`header-generator`](https://www.npmjs.com/package/header-generator): generates configurable, realistic HTTP headers
|
|
31
31
|
- [`fingerprint-generator`](https://www.npmjs.com/package/fingerprint-generator): generates realistic browser fingerprints, affecting the HTTP headers and browser JS APIs
|
|
32
32
|
- [`fingerprint-injector`](https://www.npmjs.com/package/fingerprint-injector): injects browser fingerprints into your Playwright or Puppeteer managed browser instance
|
|
33
|
-
- [`generative-bayesian-network`](https://www.npmjs.com/package/generative-bayesian-network): our fast implementation of Bayesian generative network used to generate realistic browser fingerprints
|
|
33
|
+
- [`generative-bayesian-network`](https://www.npmjs.com/package/generative-bayesian-network): our fast implementation of a Bayesian generative network used to generate realistic browser fingerprints
|
|
34
34
|
|
|
35
35
|
## Quick start
|
|
36
36
|
|
|
@@ -59,6 +59,17 @@ const { FingerprintInjector } = require('fingerprint-injector');
|
|
|
59
59
|
await page.goto("https://apify.com");
|
|
60
60
|
})();
|
|
61
61
|
```
|
|
62
|
+
|
|
63
|
+
## Performance
|
|
64
|
+
With ever-improving performance of antibot fingerprinting services, we use some of the industry-leading services to benchmark our performance.
|
|
65
|
+
The following table shows how is the latest build of `fingerprint-suite` doing in tests provided by various open-source fingerprinting services.
|
|
66
|
+
|
|
67
|
+
The performace is evaluated using school-like grades (A being the best, F being the worst).
|
|
68
|
+
|Service|Grade|
|
|
69
|
+
|---|---|
|
|
70
|
+
|BotD | |
|
|
71
|
+
|CreepJS ||
|
|
72
|
+
|
|
62
73
|
## Support
|
|
63
74
|
|
|
64
75
|
If you find any bug or issue with any of the fingerprinting tools, please [submit an issue on GitHub](https://github.com/apify/fingerprint-suite/issues).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generative-bayesian-network",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2-dev.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Apify"
|
|
6
6
|
},
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"bugs": {
|
|
18
|
-
"url": "https://github.com/apify/
|
|
18
|
+
"url": "https://github.com/apify/fingerprint-suite/issues"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"adm-zip": "^0.5.9"
|
|
22
22
|
},
|
|
23
23
|
"description": "An fast implementation of a generative bayesian network.",
|
|
24
|
-
"homepage": "https://github.com/apify/
|
|
24
|
+
"homepage": "https://github.com/apify/fingerprint-suite#readme",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "git+https://github.com/apify/
|
|
28
|
+
"url": "git+https://github.com/apify/fingerprint-suite.git"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "npm run clean && npm run compile",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./index.js ./index.mjs",
|
|
35
35
|
"copy": "ts-node -T ../../scripts/copy.ts"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "659003170ab084d6c75702ddc4240d77f9cfcb10"
|
|
38
38
|
}
|