0.3.1 • Published 5 years ago
xproxy v0.3.1
xproxy
Proxy server implemented by Node.js
Features
- http&https server for serving static assets, could forward your request via
xproxy.conf.jsconfiguration file. - support
weinreto debug mobile device
Usage
install
install for project:
$ npm install xproxy global install:
$ npm install xproxy -gproxy mapping rule
You could add or modify the mapping rule for proxy requests.
To quickly create xproxy.conf.js boilerplate
$ xproxy inithost binding
host binding means to bind the specific domain name to your localhost
//host 127.0.0.1 xx.demo.com
recommendation of host binding tool
- windows: Hosts File Editor
- Mac: gasmask
How to launch
Must run the cli below with the place where xproxy.config.js it is located
$ sudo xproxy serverhttps
prerequisite
- to generate customized certificate template for https Must adjust the generated openssl.cnf according to your domain name
$ xproxy cert init- to generate certificate after modifying openssl.cnf
$ xproxy cert- to generate CA certificate
$ xproxy cert cainstallation
iOS
using safari to open xproxy_ca.crt in your phone. Then install it following the instructions.
You could access ${localIP}/xproxy_ca.crt in your phone after you launch xproxy. Or you could use ${boundDomaiName}/xproxy_ca.crt after you bind the domain name to your localhost in your host confi.
Mac
- double-click xproxy_ca.crt to trigger installation
- open
keychain Accessapplication after you finish installation. Find the certificate, right-click on the certificate and chooseGet Info - open
Trustand change the config ofwhile using this certificateintoalways trust
default configuration
- the default port for http server is 80
- the default port for http server is 443
- by default, serve the current working directory
You could modify the default configuration at xproxy.conf.js
parameter
| parameter | description |
|---|---|
| -r, --root | config root directory |
| -p, --port | port for http server to listen |
| -s, --ssl-port | port for https server to listen |
| -S, --silent | silent mode |
| -d, --debug | enable weinre mode |
mapping rule
- config urls in
xproxy.conf.js, xproxy will return the match result once it match the rule. xproxy will manage to request production if no urls matched or no files found in local directory. - rule: regex expression
- target:function or string
- headers: function or object, to support config headers of response
- you could set a unknow target if you want to forward the traffic to production server.
module.exports = {
urls: [
{
rule: /^\/xxx\/demo.js$/,
target: 'noop'
},
{
rule: /(\/dir.*)$/,
target: '~/dev/$1'
},
//proxy forward
{
rule: /cgi.*cmdname=/,
target: 'http://11.22.33.44/$'
},
{
rule: /\/mock\/demo.cgi(.*)/,
target: function(urlPath, match, host) {
return '~/mock/demo.json'
}
}
]
}