LodestoneParser
Install
npm i -S lodestone-parser
Example
import { LODESTONE_URL, LodestoneParser } from 'lodestone-parser'
import Axios from 'axios';
Axios.get(LODESTONE_URL.character + '11756305')
.then(res => {
const parser = new LodestoneParser(res.data);
console.log({
info: parser.character().basicInfo(),
attributes: parser.character().attributes(),
gear: parser.character().gear(),
jobs: parser.character().jobs()
});
});