1.0.0 • Published 5 years ago

rcon.js v1.0.0

Weekly downloads
10
License
ISC
Repository
-
Last release
5 years ago

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