minecraft-rcon-client

Remote console client RCON. Allows you to send commands to any RCON server.


Keywords
nodejs, rcon, typescript, minecraft, typesafe, javascript, minecraft-rcon, rcon-client, socket, tcp-client
License
ISC
Install
npm install minecraft-rcon-client@3.0.0

Documentation

minecraft-rcon-client

Promise based minecraft rcon client, with support of types

Installation

npm i minecraft-rcon-client

Usage

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();