@lilithmod/unborn-namehistory
v1.0.1
Published
A library for getting a player's name history
Downloads
2
Readme
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)