rtask
v10.2.3
Published
RTask has an official API, this is it.
Downloads
6
Readme
RTask
RTask is a simple, light-weight ticketing platform for developers.
Purpose
This is an official API wrapper that allows you to get information.
Example
const RTask = require("rtask");
const instance = new RTask.Instance({
ip: "0.0.0.0",
user: "root",
pass: "1337"
});
instance.on("ready", function() {
console.log(`The server has started on port ${instance.ip.port}.`);
});
Undocumented API Methods
.registeredUsers()
- Returns an integer of the registered users.