xenyria-sdk
v1.0.0
Published
📁 Powerful SDK for the Xenyria API with a focus on developer experience
Downloads
3
Maintainers
Readme
⚠️ Important! Please read!
I've recently joined the Xenyria Team as a developer and am working on improved developer tools. This project has never reached a stable state and is currently only meant to be used by Xenyria Tools and as such will only receive updates very rarely. If you're looking for a stable SDK, there'll be one in the future.
xenyria-sdk
This project is not affiliated with Mojang Studios or Xenyria.
📁 Powerful SDK for the Xenyria API with a focus on developer experience
This package is built on top of xenyria.js which is a more low-level package that provides a simple wrapper around the Xenyria API. It also uses type definitions from xenyria-api-types.
What is Xenyria?
Xenyria is a resourcepack-enabled Minecraft Network that offers various innovative gamemodes that push the boundaries of Minecraft.
Documentation
Currently, a full documentation is being worked on. For the time being, you can take a look at the source code or look at the following usage example:
import { XenyriaSDK } from "xenyria-sdk";
const xenyria = new XenyriaSDK({
token: process.env.XENYRIA_TOKEN,
});
const latestVersion = xenyria.paintsquad.version();
const changes = latestVersion.compare("2.0.1.1");