Minecraft server stats

See the status of your minecraft server!

Install the module

npm i minecraft-server-stats

Insert the following code for a good result:

const { status } = require("minecraft-server-stats");
status('mc.hypixel.net').then(response => {
    console.log(response)
})

Ping

const { ping } = require("minecraft-server-stats");
ping('mc.hypixel.net').then(response => {
    console.log(response)
})

Playerlist

const { playerList } = require("minecraft-server-stats");
playerList('mc.hypixel.net').then(response => {
    console.log(response)
})

Last updated