pob-building-creator
v0.2.3
Published
Create [PathOfBuilding](https://github.com/PathOfBuildingCommunity/PathOfBuilding) building from POE API.
Downloads
214
Readme
pob-building-creator
Create PathOfBuilding building from POE API.
Usage
npm install pob-building-creator
Create building:
import {transform} from "pob-building-creator";
const items = {};// You should get items from poe api
const passiveSkills = {};// You should get passive skills from poe api
const pob = transform(items, passiveSkills);
console.log(pob);
Reference Projects
- PathOfBuilding A great tool of POE.
- void-battery A building exporter of TW POE. this project learns a lot from it.