https://github.com/organization/warp-proxy
Make socks5 proxy using Wgcf and Wireguard
https://github.com/organization/warp-proxy
Last synced: about 1 year ago
JSON representation
Make socks5 proxy using Wgcf and Wireguard
- Host: GitHub
- URL: https://github.com/organization/warp-proxy
- Owner: organization
- Created: 2023-12-18T15:21:10.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-18T16:20:33.000Z (over 2 years ago)
- Last Synced: 2025-02-25T04:12:37.869Z (over 1 year ago)
- Language: TypeScript
- Size: 11.7 KB
- Stars: 2
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Warp-Proxy
Make socks5 proxy server using Wgcf and Wireguard.
## Usage
```ts
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();
```