Skip to content
/ ping Public

Meteor package to perform an ICMP ping to a host using ping binaries on system (linux, mac, windows)

Notifications You must be signed in to change notification settings

frpz/ping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

frpz:ping

A simple package for sending ICMP pings to hosts.

No npm dependancy

How it works

It uses the ping executables on windows, mac or linux.

Usage

Server side only:

var hostname = 'my.example.org';
var ip = '10.0.0.1';
Ping.host(hostname);
Ping.host(ip, 5);

To ping multiple IP:

var iplist = ["10.0.0.2", "10.0.0.2", "10.0.0.3"];
Ping.range(iplist, 2);

Credits

This package was inspired by

Leitwarte

and

[jjg-ping]

About

Meteor package to perform an ICMP ping to a host using ping binaries on system (linux, mac, windows)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published