server-reach-by-image

1.0.10 • Public • Published

Server Reach By Image

Open Source Love license js-semistandard-style package version install size dependecies

Check can you reach a specific server (address or ip) by using image hosted on that server.

Why?

Cause sometimes you need to see can you reach some server from Javascript, and things can hurt. How? Well imagine asking for server with http only from https location? Or imagine needing to check for IP but certificate on that page is only valid for specific domain name. Getting some image will work even then, and give you that precious information is the location reachable or not. For example: checking for internal IP to determine are you on a vpn connection.

Install

npm i server-reach-by-image

Running

import ServerReachByImage, { errors } from 'server-reach-by-image';
 
const options = {};
const serverByImage = new ServerReachByImage(options);
serverByImage.load()
    .then(data => {})
    .catch({ code: errors.E_LOAD_FAIL }, e => {})
    .catch({ code: errors.E_LOAD_TIMEOUT }, e => {})
    .catch(e => {});

Fail method will receive error message as first parameter.

Available options:

  • url (address to hit, without following / preferred)
  • imgUrl (image to hit on the url, starting with /)
  • timeout (integer, time to wait for load before declaring a fail attempt, default 3000ms)

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i server-reach-by-image

Weekly Downloads

14

Version

1.0.10

License

MIT

Unpacked Size

15.8 kB

Total Files

12

Last publish

Collaborators

  • marinko-peso