@hpcc-js/wasm-graphviz
v1.21.0
Published
hpcc-js - WASM Graphviz
Downloads
168,281
Maintainers
Readme
title: Graphviz description: WebAssembly wrapper for the Graphviz graph visualization library outline: deep
@hpcc-js/wasm-graphviz
This package provides a WebAssembly wrapper around the Graphviz library. This allows for the rendering of DOT language graphs directly within a browser or NodeJS type environment.
Installation
::: code-group
npm install @hpcc-js/wasm-graphvizyarn add @hpcc-js/wasm-graphvizpnpm add @hpcc-js/wasm-graphviz:::
Quick Start
import { Graphviz } from "@hpcc-js/wasm-graphviz";
const graphviz = await Graphviz.load();
const svg = graphviz.dot(`digraph { a -> b; }`);
document.body.innerHTML = svg;