poe-text-to-item
Advanced tools
Parser for Path of Exile item text.
Weekly downloads
Readme
The purpose of this package is to convert text generated after clicking
ALT+CTRL+C
on an item in game into a nice object containing all the necessary
data.
Install the package
yarn add poe-text-to-item
or
npm install poe-text-to-item
Example usage
import fs from "fs";
const path = require("path");
import { generateItem } from "poe-text-to-item";
// where testItem.txt is a file with item text
const data = fs.readFileSync(path.resolve(__dirname, "testItem.txt"), 'utf8')
const item = generateItem(data)
Parser for Path of Exile item text.
The npm package poe-text-to-item receives a total of 14 weekly downloads. As such, poe-text-to-item popularity was classified as not popular.
We found that poe-text-to-item demonstrated a healthy version release cadence and project activity. It has 1 open source maintainer collaborating on the project.