-
Notifications
You must be signed in to change notification settings - Fork 434
wept 配置文件
Qiming zhao edited this page Jan 12, 2017
·
6 revisions
wept 0.7.2 中支持 nomap
设置,禁止下载微信的地图 sdk,有效提高开发效率
wept 0.6.9 中支持 headers
配置, 该配置会添加到原有 headers 中发送给真正的后台服务器。
wept 0.6.0 中支持关闭 babel 编译,需要在项目根目录下添加 wept.json
文件,加入:
{
"babel": false
}
wept 0.4.2 版本中添加了代理配置的支持,开发者可以在项目根目录下添加 wept.json
文件启用代理。
该配置文件在请求时动态读取,所以修改后无需重启 wept 服务。
wept.json
配置示例如下:
{
"proxy": {
"host": "localhost", # 默认 localhost
"port": 8090 # 默认 80
"proxyAuth": "user:password", # 可选 basicAuth
"headers": { # 可选请求头部
"User-Agent": "Node"
}
}
}
详情可参考 https://github.com/koichik/node-tunnel 这个模块。
如果你有查看或者修改 http 的需求,可以考虑使用 https://mitmproxy.org/ 这个工具来启动代理。