Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xadillax/wix-parser

Parser for *.wix (Legacy version of "Legend of Mir2") files.
https://github.com/xadillax/wix-parser

Last synced: 29 days ago
JSON representation

Parser for *.wix (Legacy version of "Legend of Mir2") files.

Awesome Lists containing this project

README

        

# Wix Parser

Parser for *.wix (Legacy version of "Legend of Mir2") files.

## Installation

```shell
$ npm install --save wix-parser
```

## Usage

```js
const path = require('path');

const { parse } = require('wix-parser');

const wix = await parse(path.join(process.cwd(), 'ChrSel.WIX'));
console.log(wix);
```

## Contribution

PRs and issues are welcomed.