Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 857 Bytes

diagrams.md

File metadata and controls

35 lines (27 loc) · 857 Bytes

Overview

text to diagram generator.

provided services

  • REST API for direct text to diagram requests
  • MQTT API endpoint for batch job
  • web UI with a text editor to test diagrms generation with examples

target engines

given that kroki has the same goal of wrapping multiple diagram generators engines, focus will be on kroki integration

REAS API

Example usage, for more details see https://docs.kroki.io/kroki/setup/usage/

    const response = await fetch("http://localhost:7000/graphviz/svg",{
        method: 'POST',
        body: diagramText,
        headers: {
          'Content-Type': 'text/plain',
        },
      })

Other diagram services