This is the repository for the Elite Insights Parser used for the AFK During [PRE] guild.
- Ensure that you have the latest version of NPM and Node.
- Clone the repository:
git clone git@github.com:StephanWells/EIParser.git
- Navigate to the repository folder and run
npm install
.
- Create a new file called
Config.json
in the root directory. - Populate the file with the following data, replacing the values with your preferred values:
{
"EliteInsightsEXE": "absolute/path/to/your/GuildWars2EliteInsights.exe",
"EliteInsightsSettings": "absolute/path/to/your/settings/file.conf",
"ParseOptions": {
"CleanSlate": false // true to re-parse all the files in the data/parsed folder, false to only parse new entries
}
}
- Transpile the TypeScript files into JavaScript code:
npm run tsc
- Then run the application:
node dist/src/App.js
Note that if you have VS Code, simply press F5 to run.