A small client for interacting with https://github.com/phybros/servertap using Typescript or Javascript
npm install --save servertap-js
const ServerTap = require('servertap-js');
const server = new ServerTap({apiKey: "xxxxxxxxxx", baseUrl: "http://localhost:4567"});
(async () => {
const players = await server.getPlayers();
const worlds = await server.getWorlds();
const plugins = await server.getPlugins();
console.log(players, worlds, plugins);
})();