📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

minecraft-java-server-query

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
m

minecraft-java-server-query

Module to gather basic information from a Minecraft Java server directly.

1.0.7
latest
72

Supply Chain Security

100

Vulnerability

84

Quality

87

Maintenance

100

License

Version published
Maintainers
0
Created
Issues
0

🌍 minecraft-java-server-query

Module to gather basic (MOTD, favicon, player count, version) information from Minecraft Java servers.

Usage

  • First, import the module:

    // Using CommonJS
    const { query } = require("minecraft-java-server-query");
    
    // Using TypeScript or ESM
    import { query } from "minecraft-java-server-query";
    
  • Then, call the query function by passing the server's information:

    // Using Hypixel information
    const options = {
        host: "mc.hypixel.net",
        timeout: 15_000
    };
    
    // Using promises
    query(options).then(response => {
        console.log(response);
    });
    
    // Using async/await
    const response = await query(options);
    console.log(response);
    

API

query(options: JavaStatusOptions) => Promise<JavaStatusResponse>

Fetch information of a Minecraft server.

  • options.host (string): IP address of the server.
  • options.port (optional, number): Port of the server. Defaults to 25565.
  • options.timeout (optional, number): Maximum time in milliseconds to disconnect due to inactivity. Defaults to 30_000.

Returns a Promise with the information of the server as a JavaStatusResponse object, or throws an error if something happened with the socket, fetching the data or because of timeout.

  • JavaStatusResponse.version ({ protocol: number, name: string }): Information about the version of Minecraft that the server is running.
  • JavaStatusResponse.players (players: { max: number, online: number, sample?: { name: string, id: string }[] }): Online players, maximum amount of players that the server is capable of having, and an optional sample of players that are online (missing most of the times).
  • JavaStatusResponse.motd (string): MOTD (Message of the day) of the server.
  • JavaStatusResponse.favicon ({ buffer: Buffer, mimeType: string } | null): Buffer and Media type (Mime type) of the server's icon/image.

FAQs

Package last updated on 02 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts