Authentication
This library requires you to authenticate to G-PORTAL to interact with your Rust Console community server(s), so this step is mandatory!
Authenticating
import { RCEManager, LogLevel } from "rce.js";
const rce = new RCEManager();
await rce.init({
username: "", // Your GPORTAL email address
password: "" // Your GPORTAL password
}, {
level: LogLevel.Info,
file: "rce.log"
});const { RCEManager, LogLevel } = require("rce.js");
const rce = new RCEManager();
await rce.init({
username: "", // Your GPORTAL email address
password: "" // Your GPORTAL password
}, {
level: LogLevel.Info,
file: "rce.log"
});Last updated
Was this helpful?

