An experimental HUML parser implementation in javascript.
npm install @huml-lang/huml
import { parse, stringify } from '@huml-lang/huml'
// Parse HUML into JS data structures.
console.log(parse(humlDoc));
// Dump JS data structures into HUML.
console.log(stringify(obj));
Licensed under the MIT license.