Socket
Socket
Sign inDemoInstall

poe-text-to-item

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    poe-text-to-item

Parser for Path of Exile item text.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
965 kB
Created
Weekly downloads
 

Readme

Source

Poe-text-to-item

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.

Example Usage

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)

FAQs

Last updated on 09 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc