Skip to content

MiXeR54/mc_ping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MC_Ping

Пинг серверов minecraft с отформатированным выводом описания и прочих полей.

Promise

pingWithPromise('localhost', 25565).then(console.log).catch(console.error);

Async

ping('localhost', 25565, (error, result) => {
    if (error) {
        console.error(error);
    } else {
        console.log(result);
    }
})

TODO

  • format description in universal format
  • format other fields
  • create npm lib

About

Minecraft Server Pinger for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published