minecraft-log-parser
v0.1.2-alpha
Published
Parse information and errors from Minecraft logs
Readme
Minecraft Log Parser
This package is designed to parse various Minecraft files and return relevant information about them, especially for debugging issues.
Installation
npm i minecraft-log-parserUsage
let file: File | string[];
const parser = await ParserBuilder.setup(file);
const fileInfo = parser.withAll().parse();See FileInfo for returned object structure.
