模拟缓慢而且不稳定的 HTTP 网络连接:Crapify
jopen
10年前
Crapify 是一个用于模拟缓慢,参差不齐,HTTP连接的代理。可以让你限制:
-
上传和下载速度
-
对外 HTTP 请求的并发连接数
使用方法:
-
npm install crapify -g
-
crapify --port=5000 --speed=3000 --concurrency=2, where:
-
port侦听端口
-
speed连接速率
-
concurrency并发连接数
示例:
usage with npm
npm config set proxy http://127.0.0.1:5000
usage with curl
curl -v --proxy http://127.0.0.1:5000 https://www.google.com
usage with OSX
-
Go tosystem preferences.
-
Click onNetwork.
-
Click onAdvanced.
-
Click onProxies.
-
Enable anhttp, and anhttpsproxy, with127.0.0.1, and:5000, respectively.