Skip to content
/ rcon Public

a script to interact with minecraft Source RCON protocol

License

Notifications You must be signed in to change notification settings

cqdetdev/rcon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

RCON

A basic RCON implementation in Deno, based off Source RCON Protocol

Usage

The API is very simple. There are two exposed methods on RCON class, connect(), send(), and sendSync().

import { RCON } from './mod.ts';

const rcon = new RCON();

await rcon.connect('127.0.0.1', 19132, 'Password123');

await rcon.send('say hello', 'COMMAND');

Credits

TS-RCON - https://github.com/bmiddha/ts-rcon (Part of buffer implementation and non-ASCII character removal was used)

About

a script to interact with minecraft Source RCON protocol

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published