mythic-analyzer
v0.1.1
Published
Mythic Analyzer is a library that provides a set of tools to analyze MythicMobs configurations.
Downloads
2
Readme
Mythic Analyzer
Mythic Analyzer is a library that provides a set of tools to analyze MythicMobs configurations.
Installation
pnpm install mythic-analyzer
Usage
As a language server
import { STDOUT_LOGGER, Workspace } from "mythic-analyzer";
import { ProposedFeatures, createConnection } from "vscode-languageserver/node.js";
const workspace = new Workspace();
workspace.logger = STDOUT_LOGGER;
try {
workspace.createLSP(createConnection(ProposedFeatures.all));
} catch (e) {
console.error((e as any).stack);
}
Credits
This library is based on this library template.