puppyproxy 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +14 -3
package/README.md CHANGED
@@ -166,7 +166,7 @@ log.highlight("TESTING: ProxyRequest");
166
166
 
167
167
  //proxyRequest is a wrapper that allows you to use a more consistent proxy for multiple requests, with auto-rotation when it fails
168
168
  const proxyRequest = pp.createProxyRequest(ipUrl, {
169
- autoNewAgent: true, // auto rotate the proxy when a request fails. if this is false if you really need just one proxy you can manage yourself
169
+ autoNewAgent: true, // auto rotate the proxy when a request fails. set this to false if you really need just one proxy you can manage yourself
170
170
  });
171
171
 
172
172
  log.bold("----- proxyRequest.fetch");
package/package.json CHANGED
@@ -1,14 +1,25 @@
1
1
  {
2
2
  "name": "puppyproxy",
3
- "version": "1.0.0",
4
- "description": "",
3
+ "version": "1.0.2",
4
+ "description": "Node.js library for managing, scraping, and using proxies with fetch and WebSocket support",
5
5
  "type": "module",
6
6
  "types": "./src/index.d.ts",
7
7
  "main": "./src/index.js",
8
8
  "exports": {
9
9
  ".": "./src/index.js"
10
10
  },
11
- "keywords": [],
11
+ "keywords": [
12
+ "proxy",
13
+ "socks",
14
+ "http",
15
+ "https",
16
+ "fetch",
17
+ "websocket",
18
+ "scraper",
19
+ "ipvanish",
20
+ "puppyproxy",
21
+ "onlypuppy7"
22
+ ],
12
23
  "scripts": {
13
24
  "test": "node src/tests/test.js",
14
25
  "build": "node src/tests/build.js"