human-browser 3.9.2 → 4.0.0
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 +11 -4
- package/SKILL.md +520 -158
- package/package.json +7 -4
- package/scripts/browser-human.js +392 -410
package/README.md
CHANGED
|
@@ -26,11 +26,14 @@ Human Browser solves this by combining:
|
|
|
26
26
|
|
|
27
27
|
## Quick Start
|
|
28
28
|
|
|
29
|
+
**No setup required** — just call `launchHuman()` and it automatically activates a free trial:
|
|
30
|
+
|
|
29
31
|
```js
|
|
30
32
|
const { launchHuman } = require('./scripts/browser-human');
|
|
31
33
|
|
|
32
|
-
//
|
|
34
|
+
// 🚀 Zero config — auto-fetches trial credentials from humanbrowser.dev
|
|
33
35
|
const { browser, page, humanType, humanClick, humanScroll, sleep } = await launchHuman();
|
|
36
|
+
// Output: 🎉 Human Browser trial activated! (~100MB Romania residential IP)
|
|
34
37
|
|
|
35
38
|
// Specific country
|
|
36
39
|
const { page } = await launchHuman({ country: 'us' }); // US residential IP
|
|
@@ -46,6 +49,8 @@ await humanClick(page, 760, 400);
|
|
|
46
49
|
await browser.close();
|
|
47
50
|
```
|
|
48
51
|
|
|
52
|
+
> **Trial exhausted?** Get a paid plan at https://humanbrowser.dev, then set `PROXY_USER` / `PROXY_PASS` in your `.env`.
|
|
53
|
+
|
|
49
54
|
---
|
|
50
55
|
|
|
51
56
|
## Setup
|
|
@@ -90,9 +95,11 @@ Plug any residential proxy into Human Browser via env vars.
|
|
|
90
95
|
|
|
91
96
|
| Provider | Quality | Price | Best for |
|
|
92
97
|
|---|---|---|---|
|
|
93
|
-
| **[Decodo](https://decodo.com)** (ex-Smartproxy) | ⭐⭐⭐⭐⭐ | ~$2.5/GB | Cloudflare, DataDome, all-round |
|
|
94
|
-
| **[
|
|
95
|
-
| **[
|
|
98
|
+
| **[Decodo](https://decodo.com)** (ex-Smartproxy) | ⭐⭐⭐⭐⭐ | ~$2.5/GB | Cloudflare, DataDome, all-round. No KYC. |
|
|
99
|
+
| **[Bright Data](https://get.brightdata.com/4ihj1kk8jt0v)** | ⭐⭐⭐⭐⭐ | ~$8.4/GB | Enterprise-grade, 72M+ IPs, 195 countries |
|
|
100
|
+
| **[IPRoyal](https://iproyal.com)** | ⭐⭐⭐⭐ | ~$1.75/GB | High volume, budget, ethically sourced |
|
|
101
|
+
| **[NodeMaven](https://nodemaven.com)** | ⭐⭐⭐⭐ | ~$3.5/GB | High success rate, pay-per-GB, no minimums |
|
|
102
|
+
| **[Oxylabs](https://oxylabs.io)** | ⭐⭐⭐⭐⭐ | ~$8/GB | Business-grade, dedicated support |
|
|
96
103
|
|
|
97
104
|
```env
|
|
98
105
|
PROXY_HOST=your-proxy-host
|