cross-os-proxy-auth
v2.1.3
Published
configure system proxy settings, support macOS & windows
Maintainers
Readme
cross-os-proxy-auth
configure system proxy settings
support platforms:
- windows
- macOS
Install
$ npm install --save cross-os-proxy-authUsage
const osProxy = require('cross-os-proxy-auth');
(async () => {
await osProxy.setProxy('127.0.0.1', 9999, 'username', 'password'); // set http and https proxy
console.log('done');
})();
(async () => {
await osProxy.closeProxy(); // close http and https proxy
console.log('done');
})();
