0.1.1 • Published 1 year ago

mythic-analyzer v0.1.1

Weekly downloads
-
License
AGPL-3.0-or-later
Repository
github
Last release
1 year ago

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.