1
0
mirror of https://github.com/alibaba/anyproxy.git synced 2025-05-10 14:58:27 +00:00
2017-12-01 21:30:49 +08:00

11 lines
189 B
JavaScript

const AnyProxy = require('../proxy');
const options = {
port: 8001,
webInterface: {
enable: true
}
};
const proxyServer = new AnyProxy.ProxyServer(options);
proxyServer.start();