socks 2.3.1 → 2.4.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/.prettierrc.yaml +3 -1
- package/.travis.yml +3 -2
- package/README.md +1 -1
- package/build/client/socksclient.js +163 -161
- package/build/client/socksclient.js.map +1 -1
- package/build/common/constants.js +2 -1
- package/build/common/constants.js.map +1 -1
- package/build/common/helpers.js +1 -0
- package/build/common/helpers.js.map +1 -1
- package/build/common/receivebuffer.js +17 -16
- package/build/common/receivebuffer.js.map +1 -1
- package/build/common/util.js +3 -1
- package/build/common/util.js.map +1 -1
- package/build/index.js +11 -4
- package/build/index.js.map +1 -1
- package/package.json +18 -16
- package/typings/client/socksclient.d.ts +34 -36
- package/typings/common/constants.d.ts +9 -8
- package/typings/common/receiveBuffer.d.ts +4 -4
- package/yarn-error.log +0 -2416
- package/yarn.lock +0 -2300
package/.prettierrc.yaml
CHANGED
package/.travis.yml
CHANGED
package/README.md
CHANGED
@@ -14,7 +14,7 @@ Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Inc
|
|
14
14
|
|
15
15
|
### Requirements
|
16
16
|
|
17
|
-
* Node.js
|
17
|
+
* Node.js v10.0+ (Please use [v1](https://github.com/JoshGlazebrook/socks/tree/82d83923ad960693d8b774cafe17443ded7ed584) for older versions of Node.js)
|
18
18
|
|
19
19
|
### Looking for v1?
|
20
20
|
* Docs for v1 are available [here](https://github.com/JoshGlazebrook/socks/tree/82d83923ad960693d8b774cafe17443ded7ed584)
|