1.0.1 • Published 7 years ago

mcapi v1.0.1

Weekly downloads
30
License
GPL-3.0
Repository
github
Last release
7 years ago

mcapi

An unofficial Node.js library for fetching data from Mojang

Get user data, translate usernames <-> UUID's, get username history and more with promises.

Install

To install mcapi simply run

    npm install -s mcapi

Usage

First import the library using:

    const mcapi = require('mcapi');

To get the corresponding UUID of a username simply type:

    let uuid = await mcapi.usernameToUUID("Deftware");

oAuth

This library also supports MC-oAuth, to use oAuth simply type:

    let uuid = await mcapi.oAuthToUUID("<6 digit oauth code>");

You get the 6 digit oauth code from joining srv.mc-oauth.net with your Minecraft client.