hytale-server-status-query
v1.0.0
Published
Cliente QUIC para verificar status de servidores Hytale
Downloads
12
Maintainers
Readme
Hytale Server Status Query
A library for querying Hytale server status using the QUIC protocol.
Overview
This library provides a simple and efficient way to check the status of Hytale game servers. It implements a QUIC client that can connect to Hytale servers and retrieve their online status and latency information.
Features
- ✅ QUIC protocol support
- ✅ Server status checking (online/offline)
- ✅ Ping measurement
Installation
Install the package using npm:
npm install hytale-server-status-queryyarn add hytale-server-status-queryUsage
Basic Usage
import { HytaleQuicClient } from 'hytale-server-status-query';
const client = new HytaleQuicClient('your-server-address.com');
client.checkServerStatus()
.then(result => {
console.log('Server Status:', result);
})
.catch(error => {
console.error('Error:', error.message);
});License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Author
Made with ❤️ by the SnowDev
