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

https://github.com/dylhack/rcon.js

An RCON client for Node.JS developers
https://github.com/dylhack/rcon.js

Last synced: about 1 year ago
JSON representation

An RCON client for Node.JS developers

Awesome Lists containing this project

README

          

# RCON.js
An RCON client for NodeJS developers.

## Example Usage
```javascript
const {Client} = require('rcon.js');
const client = new Client('127.0.0.1', 25575);

client.login('password')
.then(async () => {
const response = await client.command('seed');
console.log(response.body);
});
```

## Further Documentation
Refer to [docs](./docs/globals.md)