@proxyport/proxyport
Node.js package provides interfaces to the Proxy Port API.
To use this package you will need a free API key. Get your AIP key here. Detailed instructions here.
Install via npm:
$ npm i @proxyport/proxyport
Before you get your first proxy, you need to assign an API key.
import { ProxyPort } from '@proxyport/proxyport';
let proxyPort = new ProxyPort(<API_KEY>);
(async () => {
let proxy = await proxyPort.getProxy();
console.log(proxy);
})();