An open API service indexing awesome lists of open source software.

https://github.com/explooosion/hideout-parse

Parse Path Of Exile.
https://github.com/explooosion/hideout-parse

hideout parse parser pathofexile

Last synced: 2 months ago
JSON representation

Parse Path Of Exile.

Awesome Lists containing this project

README

          

[![forthebadge](https://forthebadge.com/images/badges/makes-people-smile.svg)](https://forthebadge.com)
[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)

# HIDEOUT PARSE

Parse Path Of Exile.

## Installation

```sh
yarn add hideout-parse

# or

npm install hideout-parse
```

## Usage

JavaScript

```html

```

```js
import HideoutParse from 'hideout-parse';

window.onload = () => {
document.getElementById('files').onchange = readFile;
};

function readFile() {
file = this.files[0];
var fReader = new FileReader();
fReader.onload = (e) => {
const parse = HideoutParse(e.target.result);
console.log(parse);
};
fReader.readAsText(file);
}
```

Node.js

```js
import fs from 'fs';
import HideoutParse from 'hideout-parse';

const file = fs.readFileSync('./test.hideout');
const parse = HideoutParse(file.toString());

console.log(parse);
```

## License

[MIT](http://opensource.org/licenses/MIT)