https://github.com/catplvsplus/rcon
https://github.com/catplvsplus/rcon
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/catplvsplus/rcon
- Owner: catplvsplus
- License: mit
- Created: 2023-07-27T12:16:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-27T12:16:41.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T01:07:36.906Z (6 months ago)
- Language: TypeScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```