546 B
546 B
Minecraft Utilities - Javascript Library
The JavaScript library for the Minecraft Utilities API.
Usage
Install the package using npm:
npm install mcutils-library
Get player:
import { getPlayer, CachedPlayer } from "mcutils-library";
const cachedPlayer = await getPlayer(playerId);
console.log(player);
Get Server:
import { getServer, CachedJavaMinecraftServer } from "mcutils-library";
const cachedServer = await getServer(ServerPlatform.Java, "hypixel.net");
console.log(server);