Skip to content

Latest commit

 

History

History
67 lines (47 loc) · 2.6 KB

README.md

File metadata and controls

67 lines (47 loc) · 2.6 KB

mowojang-js

NPM Version NPM Downloads NPM License

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 Username
  • getProfile(): Retrieve full Player Data by UUID or Username
  • getSessions(): Retrieve Player Session Data of multiple Players by UUID or Username
  • getSession(): Retrieve Player Session Data by UUID or Username
  • getUUID(): Converts a Player's Username to UUID
  • getUsername(): Converts a Player's UUID to Username
  • getSkin(): Returns the Skin the specified Player is currently wearing
  • getSkinBuffer(): Returns Skin Image fetched via getSkin() as a Buffer
  • getCape(): Returns the Cape the specified Player has currently selected
  • getCapeBuffer(): Returns Cape Image fetched via getCape() as a Buffer

All above Functions accept an second Argument containing an optional config. 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
  • player() Combines the above

⚙️ Development

  • pnpm install: Installs all required dependencies
  • pnpm build: Runs the TypeScript compiler
  • pnpm test: Runs tests for all Functions

📎 Credits