SDK > @proxyport/proxyport

Node.js proxyport

npmjs.com/package/@proxyport/proxyport - page on npmjs.com

github.com/proxyport/ts-proxyport - source code on github

Prerequisites

Get API Key

Installation

$ npm i @proxyport/proxyport

            

Getting Started

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);
})();