🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

anon-protocol

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anon-protocol

## Install

0.2.1
latest
npm
Version published
Weekly downloads
10
-56.52%
Maintainers
0
Weekly downloads
 
Created
Source

Anon Protocol NPM Package

Install

npm install anon-protocol

Run Anon Client

npx anon-protocol

Run Anon Proxy (Example Usage)

npx anon-proxy curl icanhazip.com

Build

npm run build

Usage Example (Typescript)

import { Anon } from 'anon-protocol';
import { SocksProxyAgent } from 'socks-proxy-agent';
import axios from 'axios';

const socksPort = 9050;

// Create Anon client
const anon = new Anon({ socksPort });

// Set up axios to use Anon
const proxyOptions = `socks5h://127.0.0.1:${socksPort}`;
const httpAgent = new SocksProxyAgent(proxyOptions);
const httpsAgent = httpAgent;
const client = axios.create({ httpAgent, httpsAgent });

(async () => {
  // Start Anon client
  await anon.start();

  // Make a HTTP request to API
  const resp = await axios.get('https://api.ipify.org?format=json');

  // Make a HTTP request to API using Anon
  const anonResp = await client.get('https://api.ipify.org?format=json');

  // Log responses
  console.log(`Real IP: ${resp.data.ip}`);
  console.log(`Anon IP: ${anonResp.data.ip}`);

  // Stop Anon client
  await anon.stop();
})();

function shutdown() {
  anon.stop();
  process.exit(0);
}

// Graceful shutdown
process.once('SIGINT', shutdown);
process.once('SIGTERM', shutdown);

Response should look like:

Real IP: 94.16.115.212
Anon IP: 89.58.10.128

Docs

To generate API docs:

npm run typedoc

Docs will be generated to docs/ directory, open index.html to view it

FAQs

Package last updated on 06 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts