libquery

1.0.2 • Public • Published

libquery

libquery is a NodeJS library for queries on different game servers

Installation

npm i libquery

Usage

// Promises
const libquery = require("libquery");
 
libquery.query("play.symp.fr", 19132).then((data) => {
    console.log("The server is in " + data.version);
}).catch((err) => {
    console.log("An error occured!\n " + err.message);
});
 
// Async
try{
    let data = await libquery.query("play.symp.fr", 19132);
    console.log("The server is in " + data.version);
}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

Package Sidebar

Install

npm i libquery

Weekly Downloads

13

Version

1.0.2

License

MIT

Unpacked Size

5.91 kB

Total Files

5

Last publish

Collaborators

  • seyzd