Socket
Socket
Sign inDemoInstall

mirror-selector

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mirror-selector

Find the fastest working route to a TCP service.


Version published
Weekly downloads
4
Maintainers
1
Install size
1.70 MB
Created
Weekly downloads
 

Readme

Source

mirror-selector

Find fastest mirror to establish a TCP connection

Usage sample:

This lib find the fastest link to a server.

Classic usage:

You want to find the closest mirror to connect to it. See test file for a code sample that find the closest debian deb mirror server.

itinerant usage.

You have a database in your lan, that you can access with a VPN. But you do not want to use the VPN when your a connected to the same lan. Give thw VPN IP and the LAN IP to this API and use the fastest link to access the database.

code sample

My redis database can be access as localhost, local network, or VPN.

import getFastest from '.';

async code() {
    const server = await getFastest([
        {host: '127.0.0.1', port: 6379},
        {host: '192.168.1.4', port: 6379},
        {host: '10.0.10.4', port: 6379}\
    ], { timeout: 2000 });
    console.log('best link is: ', server);
}

This call will return me a localhost access if I'm on the server, a local access if I'm on the rigth network, a VPN access if I'm out of office, and off course will throw an Error if I have no access to my redis.

Keywords

FAQs

Last updated on 08 Apr 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc