Socket
Book a DemoInstallSign in
Socket

fastest-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastest-server

Used to get the fastest server from the list

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

fastest-server

Build Status Dependency Status npm

Library used to get fastest server using ICMP (Internet Control Message Protocol).

Table of Contents

About

This library is used to get the fastest server from the list of servers (IP’s or host names). Many times same services are running in different regions to serve clients better. And this library will try to ping the list of servers using ICMP (Internet Control Message Protocol). Based on response time it will find the fastest server which is mostly nearest server.

Installation

npm install fastest-server

Usage

const FastestServer = require('fastest-server');

const { fastest, stats } = await FastestServer.get(['172.217.19.14', 'google.com'])

// fastest - will have fastest host.
// stats - will be more information about response time and respose type.
// {
//   fastest: 'google.com',
//   stats: [
//     { host: '172.217.19.14', response: 'REPLY', timeElapsed: 9 },
//     { host: 'google.com', response: 'REPLY', timeElapsed: 2 }
//   ]
// }

Methods Exposed

(static) FastestServer.get( hosts: Array< String >, [timeout: number]): Promise<{ fastest: string, stats: Array<{ host: string, response: string , timeElapsed: numer }>}>

const { fastest, stats } = await FastestServer.get(['172.217.19.14', 'google.com'], 5000);

console.log(fastest); // google.com
console.log(stats);
// [
//   { host: '172.217.19.14', response: 'REPLY', timeElapsed: 9 },
//   { host: 'google.com', response: 'REPLY', timeElapsed: 2 }
// ]

response will be one of the value from array: ['REPLY', 'NA', 'DESTINATION_UNREACHABLE', 'SOURCE_QUENCH', 'REDIRECT', 'UNKNOWN']

timeElapsed will be in milliseconds (ms)

Keywords

fastest server

FAQs

Package last updated on 09 Aug 2020

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