Initializing
This step is mandatory to create the "RCE Manager" instance which can be used as an event emitter and used to interact with multiple servers.
Authenticating
import { RCEManager, LogLevel } from "rce.js";
const rce = new RCEManager({
logger: {
level: LogLevel.Info
}
});const { default: RCEManager, LogLevel } = require("rce.js");
const rce = new RCEManager({
logger: {
level: LogLevel.Info
}
});Last updated