Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/catplvsplus/rcon
https://github.com/catplvsplus/rcon
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/catplvsplus/rcon
- Owner: catplvsplus
- License: mit
- Created: 2023-07-27T12:16:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-27T12:16:41.000Z (over 1 year ago)
- Last Synced: 2024-10-13T03:24:20.269Z (3 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();
```