node-gamedig/examples/simple.js

12 lines
283 B
JavaScript
Raw Normal View History

2023-10-30 22:35:39 +01:00
import GameDig from '../lib/index.js'
// Instead of '../lib/index.js' you would have here 'gamedig'.
GameDig.query({
type: 'minecraft',
host: 'mc.hypixel.net'
}).then((state) => {
console.log(state)
}).catch((error) => {
console.log(`Server is offline, error: ${error}`)
})