Frontend/documentation/libraries/javascript.md

28 lines
619 B
Markdown
Raw Permalink Normal View History

---
title: Javascript Library
2024-04-20 21:16:30 +00:00
summary: The Javascript library for Minecraft Utilities is a simple way to interact with the API using Javascript!
---
# Javascript Library
This is the Javascript library for Minecraft Utilities.
## Installation
To use the Javascript library, you can run the following command:
```bash
npm install mcutils-library
```
## Usage
This is a simple example of how to use the Javascript library to get a player's information.
```javascript
import { getPlayer, CachedPlayer } from "mcutils-library";
2024-04-21 01:44:47 +00:00
const cachedPlayer: CachedPlayer = await getPlayer(playerId);
console.log(player);
```