Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/catplvsplus/rcon


https://github.com/catplvsplus/rcon

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# rcon

Rcon client for node.js

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