Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 336 Bytes

File metadata and controls

19 lines (13 loc) · 336 Bytes

JustMinecraft

Simple Minecraft package for Node.js.

npm install @jnode/minecraft

Get Minecraft Java server status

const mcje = require('@jnode/minecraft').java;

const client = new mcje.Client('MINECRAFT SERVER HOST');

client.getServerStatus().then((d) => {
	console.log(JSON.stringify(d, null, 2));
});