@witlang/runtime
v0.2.0
Published
Resolver + expander runtime for the Wit markup language
Downloads
401
Maintainers
Readme
@witlang/runtime
Resolver + expander runtime for the Wit markup language.
Install
npm install @witlang/runtimeUse
import { parse } from '@witlang/parser';
import { resolve, expand } from '@witlang/runtime';
const doc = parse(source, 'inline');
const resolved = resolve(doc);
const expanded = expand(resolved);See github.com/PurpleReverie/prototype_language_wit for the language reference.
