1.0.1 • Published 5 years ago

ping-host v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

ping-host

Browser ping host tool.

Usage

$ yarn add ping-host
import ping from 'ping-host';

await ping('taobao.com');
await ping('github.com', 'fluidicon.png');
await ping('github.com', 5000);
await ping('github.com', 'fluidicon.png', 3000);

or

<script src="https://unpkg.com/ping-host"></script>
<script>
const ret = await ping('taobao.com');
// or
ping('taobao.com').then(ret => console.log(ret));
</script>