Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xadillax/wix-parser
- Owner: XadillaX
- License: mit
- Created: 2022-04-13T06:50:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T20:20:51.000Z (7 months ago)
- Last Synced: 2024-05-02T00:42:12.099Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.