1.0.0 • Published 10 months ago

@catplusplus/rcon v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

rcon

Rcon client for node.js

import { RconClient } from '@catplusplus/rcon';

const client = new RconClient({
    host: 'localhost',
    port: 25575,
    password: 'password'
});

client.on('ready', async () => {
    const packet = await client.sendCommand('help');
    console.log(packet.body);
});

client.login();
1.0.0

10 months ago