Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 358 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 358 Bytes

Warp-Proxy

Make socks5 proxy server using Wgcf and Wireguard.

Usage

let service = new WarpProxy("wgcf_executable_path", "wireproxy_executable_path");
await service.init();

let port = 8080;
let proxy1 = service.createProxy(port);
await proxy1.startService();

// listen socks5 proxy server on 'socks5://127.0.0.1:8080'

proxy1.stopService();