Skip to content

Instantly share code, notes, and snippets.

@FuchsCrafter
FuchsCrafter / mc-server-status.html
Last active December 6, 2023 17:42
Get the Online Status and Metadata of a minecraft server using JavaScript
<script>
const SERVER_URL = "mc.hypixel.net";
// set any of below values to "off" if not needed
const HTML_STATUS_ELEMENT_ID = "status";
const HTML_PLAYERCOUNT_ELEMENT_ID = "players";
const HTML_MOTD_ELEMENT_ID = "motd";
const HTML_ICON_ELEMENT_ID = "icon";
// end