SKXV RCON is a dead simlpe RCON client, built in NextJS with tailwind and shadcn/ui.
- Open the website at rcon.skxv.dev
- Enter your rcon host/ip
- Enter your rcon port
- Enter authentication password
- Select your game (optional)
SKXV RCON comes with a free api, which is just as simple as using the website.
The following examples are using axios.
const data = await axios.post("https://rcon.skxv.dev/api/rcon", {
command: "help", // string
host: "127.0.0.1", // string
port: 4312, // number
password: "pwd" // string
});
return data;
/*
returns {
data: "list of commands: ...."
success: true
}
*/