rcon.js
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

RCON.js

An RCON client for NodeJS developers.

Example Usage

const {RCONClient} = require('rcon.js');
const client = new RCONClient({
    host: '127.0.0.1',
    port: 25575
});


client.login('password')
    .then(() => {
        client.command('seed')
            .then((response) => console.log(response.body))
    })

Further Documentation

Refer to docs

/rcon.js/

    Package Sidebar

    Install

    npm i rcon.js

    Weekly Downloads

    0

    Version

    1.0.0

    License

    ISC

    Unpacked Size

    25.7 kB

    Total Files

    33

    Last publish

    Collaborators

    • dylhack