Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 771 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 771 Bytes

vmap-svg


formform module to draw vmap trees in SVG format for visualization in the browser, in PDFs, etc.

Usage

Install formform if you haven't already.

Then install the module:

npm install vmap_svg
// ES6:
import vmap_svg from 'vmap-svg';

// CommonJS:
let vmap_svg = require('vmap-svg');

You can then use the module like this:

const vmap = formform.dna.vmap('((a)b)');
const vmapSVG = vmap_svg.draw(vmap.tree, vmap.input, vmap.varorder, vmap.options);

document.body.appendChild(document.createElement('div')).innerHTML = vmapSVG.elem;

Documentation

Coming soon…