@niubir/node-sysproxy
v1.1.2
Published
use sysproxy in nodejs
Readme
node-sysproxy
Install
npm install @niubir/node-sysproxyHow to use
const { init, onHttp, onHttps, onSocks, offHttp, offHttps, offSocks, offAll } = require('@niubir/node-sysproxy')
const host = '127.0.0.1'
const httpPort = 20001
const httpsPort = 20002
const socksPort = 20003
init()
onHttp({ host: host, port: httpPort })
onHttps({ host: host, port: httpsPort })
onSocks({ host: host, port: socksPort })
offHttp()
offHttps()
offSocks()
offAll()