mirror of
https://github.com/minescope/mineping.git
synced 2024-12-27 11:55:46 +00:00
xzeldon
910184bf5f
fix(cli.js): refactor help and error handling logic for better readability and maintainability feat(cli.js): add support for custom port and timeout options fix(parallel.js): update list of hosts to ping fix(bedrock.js): add comments and improve error handling in ping function fix(java.js): add comments and improve error handling in ping function fix(varint.js): add comments to functions and improve readability fix(index.d.ts): export all functions from java.js and bedrock.js fix(lib/bedrock.d.ts): update source link fix(lib/java.d.ts): update source link
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
/**
|
|
* @param port The server port.
|
|
* @param timeout The read/write socket timeout.
|
|
*/
|
|
export type PingOptions = {
|
|
port: number,
|
|
timeout: number;
|
|
};
|
|
|
|
export type BedrockPingResponse = {
|
|
version: {
|
|
name: string;
|
|
protocol: string;
|
|
};
|
|
players: {
|
|
max: string;
|
|
online: string;
|
|
};
|
|
description: string;
|
|
gamemode: string;
|
|
};
|
|
|
|
/**
|
|
* Asynchronously ping Minecraft Bedrock server.
|
|
*
|
|
* The optional `options` argument can be an object with a `ping` (default is `19132`) or/and `timeout` (default is `5000`) property.
|
|
*
|
|
* @param host The Bedrock server address.
|
|
*
|
|
* ```js
|
|
* import { pingBedrock } from '@minescope/mineping';
|
|
*
|
|
* const data = await pingBedrock('mco.mineplex.com');
|
|
* console.log(data);
|
|
* ```
|
|
*
|
|
* The resulting output will resemble:
|
|
* ```console
|
|
* {
|
|
* version: { name: 'Mineplex', protocol: '475' },
|
|
* players: { max: '5207', online: '5206' },
|
|
* description: ' New Costumes',
|
|
* gamemode: 'Survival'
|
|
* }
|
|
* ```
|
|
* @see [source](https://github.com/minescope/mineping/blob/915edbec9c9ad811459458600af3531ec0836911/lib/bedrock.js#L204)
|
|
*/
|
|
export function pingBedrock(host: string, options?: PingOptions): Promise<BedrockPingResponse>;
|
|
|