Parse information and errors from Minecraft logs
npm install minecraft-log-parserThis package is designed to parse various Minecraft files and return relevant information about them, especially for debugging issues.
npm i minecraft-log-parser
`Usage
`ts
let file: File | string[];
const parser = await ParserBuilder.setup(file);
const fileInfo = parser.withAll().parse();
``See FileInfo for returned object structure.