minecraft-rcon-client
Version:
Remote console client RCON. Allows you to send commands to any RCON server.
21 lines (19 loc) • 434 B
Markdown
```
npm i minecraft-rcon-client
```
```ts
import { Rcon } from "minecraft-rcon-client";
const client = new Rcon({
host: '127.0.0.1',
port: 25575,
password: 'test'
});
await client.connect();
const response = await client.query('list');
console.log(response);
await client.disconnect();
```