https://github.com/marinko-peso/server-reach-by-image
:fire: Check can you reach a specific server (address or ip) by using image hosted on that server.
https://github.com/marinko-peso/server-reach-by-image
Last synced: 25 days ago
JSON representation
:fire: Check can you reach a specific server (address or ip) by using image hosted on that server.
- Host: GitHub
- URL: https://github.com/marinko-peso/server-reach-by-image
- Owner: marinko-peso
- License: mit
- Created: 2018-05-26T14:29:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T23:37:09.000Z (about 2 years ago)
- Last Synced: 2025-04-02T01:02:50.422Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 1.72 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Server Reach By Image
[](https://github.com/ellerbrock/open-source-badges/)
[](https://github.com/marinko-peso/shamus/blob/master/LICENSE)
[](https://github.com/Flet/semistandard)
[](https://npm.im/server-reach-by-image)
[](https://packagephobia.now.sh/result?p=server-reach-by-image)
[](https://david-dm.org/marinko-peso/server-reach-by-image)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
```ssh
npm i server-reach-by-image
```## Running
```js
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 ```3000```ms)## License
MIT