Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (23 loc) · 710 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 710 Bytes

minecraft-pinger

js-standard-style license

A promise-based minecraft pinger in Node.js

TODOs

  • Calculate latency in milliseconds
  • Resolve SRV dns entry
  • Able to ping servers prior version 1.6

Example

const pinger = require('minecraft-pinger')

// Promise
pinger.pingPromise('localhost', 25565)
  .then(console.log)
  .catch(console.error)

// Async
pinger.ping('localhost', 25565, (error, result) => {
  if (error) return console.error(error)
  console.log(result)
})

License

MIT