1.0.3 • Published 4 years ago

librcon v1.0.3

Weekly downloads
18
License
MIT
Repository
github
Last release
4 years ago

librcon

Codacy Badge

librcon is an easy to use NodeJS library for send commands via RCON on different game servers

Installation

npm i librcon

Usage

// Promises
const librcon = require("librcon");

librcon.send("list", "password", "0.0.0.0", 19132).then((res) => {
	console.log("Got response : " + res);
}).catch((err) => {
	console.log("An error occured!\n " + err.message);
});

// Async
try{
    let res = await librcon.send("list", "password", "0.0.0.0", 19132);
    console.log("Got response : " + res);
}catch(err){
    console.log("An error occured!\n " + err.message);
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago