Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 554 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 554 Bytes

Unborn Name History

A library for getting Minecraft Java name history data after the removal of the public API. Do note that some values may be missing and some values will be estimates. You can identify these with the accurate field.

Usage

Javascript

const { getNameHistory } = require('unborn-name-history')

getNameHistory('Notch').then(profile => {
    console.log(profile)
})

Typescript

import { getNameHistory } from 'unborn-name-history'

const profile = await getNameHistory('Notch')
console.log(profile)