cross-os-proxy

configure system proxy settings, support macOS & windows

Usage no npm install needed!

<script type="module">
  import crossOsProxy from 'https://cdn.skypack.dev/cross-os-proxy';
</script>

README

cross-os-proxy

configure system proxy settings

support platforms:

  • windows
  • macOS

Install

$ npm install --save cross-os-proxy

Usage

const osProxy = require('cross-os-proxy')

(async () => {
    await osProxy.setProxy('127.0.0.1', 9999) // set http and https proxy
    console.log('done')
})()

(async () => {
    await osProxy.closeProxy() // close http and https proxy
    console.log('done')
})()