0.3.4 • Published 5 months ago
mowojang v0.3.4
mowojang-js
!IMPORTANT This is a third party wrapper for the Mowojang-API!
✨ Quick Start
import { Client as MowojangClient } from "mowojang"
const Mowojang = new MowojangClient()
const UUID = await Mowojang.getUUID("Pixelic")
const username = await Mowojang.getUsername("14727fae-fbdc-4aff-848c-d2713eb9939e")
!TIP If you plan on using this in a long-running process with heavy usage check out this guide on how to setup custom caching to prevent memory leaks. Guide: Custom-Caching
🔧 Functions / Supported Endpoints
getProfiles()
: Retrieve full Player Data of multiple Players by UUID or UsernamegetProfile()
: Retrieve full Player Data by UUID or UsernamegetSessions()
: Retrieve Player Session Data of multiple Players by UUID or UsernamegetSession()
: Retrieve Player Session Data by UUID or UsernamegetUUID()
: Converts a Player's Username to UUIDgetUsername()
: Converts a Player's UUID to UsernamegetSkin()
: Returns the Skin the specified Player is currently wearinggetSkinBuffer()
: Returns Skin Image fetched via getSkin() as a BuffergetCape()
: Returns the Cape the specified Player has currently selectedgetCapeBuffer()
: Returns Cape Image fetched via getCape() as a Buffer
All above Functions accept an second Argument containing an optional config object. Cache options can also be passed there via the cache key. All available cache options can be found here.
🗃️ Utility Functions
All Utility Functions are exported combined as utlis.x
.
dashUUID()
: Adds dashes to UUIDv4 (If the UUIDv4 is already dashed nothing will change)undashUUID()
: Removes all dashes from UUIDv4
🗂️ Validator Functions
All Validator Functions are exported combined as validate.x
.
UUID()
: Returns whether the provided String is an valid UUID (Accepts both undashed and dashed UUIDv4 Strings)username()
: Returns whether the provided String is an valid Username (Accepts a second argument stating the minimum length required to pass the validation)player()
Combines the above
⚙️ Development
pnpm install
: Installs all required dependenciespnpm build
: Runs the TypeScript compilerpnpm test
: Runs tests for all Functions