基于node的跨平台抓包代理工具whistle
详细内容请进入官网查看 http://wproxy.org/whistle/
-
安装Node
whistle支持
v0.10.0
以上版本的Node,为获取更好的性能,推荐安装最新版本的Node。- Windows或Mac系统,访问https://nodejs.org/,安装LTS版本的Node,默认安装即可
- Linux下推荐使用源码安装: 从Node官网下载最新版的Source Code(或者用
wget
命令下载),解压文件(tar -xzvf node-vx.y.z.tar.gz
)后进入解压后的根目录(node-vx.y.z
),依次执行./configure
、./make
和./make install
。
-
安装whistle
npm install -g whistle
npm默认镜像是在国外,有时候安装速度很慢或者出现安装不了的情况,如果无法安装或者安装很慢,可以使用taobao的镜像安装:
$ npm install cnpm -g --registry=https://registry.npm.taobao.org $ cnpm install -g whistle 或者直接指定镜像安装: $ npm install whistle -g --registry=https://registry.npm.taobao.org