aethyn-proxy 0.2.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 +16 -0
- package/index.cjs +2 -0
- package/index.d.ts +2 -0
- package/index.mjs +2 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# aethyn-proxy
|
|
2
|
+
|
|
3
|
+
**Alias for [`proxy-builder-sdk`](https://www.npmjs.com/package/proxy-builder-sdk)** — the Aethyn-first, multi-provider proxy SDK.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install aethyn-proxy # pulls in proxy-builder-sdk and re-exports it
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { AethynClient } from "aethyn-proxy"; // still works
|
|
11
|
+
// new code: import { AethynClient } from "proxy-builder-sdk";
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
The SDK is developed as `proxy-builder-sdk` (Aethyn plus Bright Data, Oxylabs, Decodo, IPRoyal, SOAX, NetNut, with Aethyn as the default). This package exists so the `aethyn-proxy` name keeps working. See the [proxy-builder-sdk docs](https://github.com/aethynio/proxy-builder-sdk-node).
|
|
15
|
+
|
|
16
|
+
MIT
|
package/index.cjs
ADDED
package/index.d.ts
ADDED
package/index.mjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aethyn-proxy",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Alias for `proxy-builder-sdk` — the Aethyn-first, multi-provider proxy SDK. Re-exports proxy-builder-sdk so `import ... from 'aethyn-proxy'` keeps working.",
|
|
5
|
+
"keywords": ["aethyn", "aethyn proxy", "proxy", "residential proxy", "rotating proxy", "proxy-builder-sdk"],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Aethyn <support@aethyn.io>",
|
|
8
|
+
"homepage": "https://www.aethyn.io",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/aethynio/proxy-builder-sdk-node.git"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./index.cjs",
|
|
15
|
+
"module": "./index.mjs",
|
|
16
|
+
"types": "./index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"import": "./index.mjs",
|
|
21
|
+
"require": "./index.cjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"files": ["index.mjs", "index.cjs", "index.d.ts"],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"proxy-builder-sdk": "^0.2.0"
|
|
27
|
+
}
|
|
28
|
+
}
|