Get started with flowchart CDN

MIT licensed

A flowchart is not a library, but rather a graphical representation of an algorithm or workflow. However, there are several JS libraries available for creating and manipulating flowcharts, such as ConceptDraw DIAGRAM, draw.io, and jFlowchart.

Tags:
  • flowchart
  • client
  • script

Stable version

Copied!

How to start using flowchart CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with flowchart CDN - cdnhub.io</title>
  <style>
    #diagram { width: 500px; height: 500px; border: 1px solid black; }
  </style>
</head>
<body>
  <div id="diagram"></div>
  <script src="https://cdn.jsdelivr.net/npm/flowchart.js@1.18.0/dist/flowchart.min.js"></script>
  <script src="app.js"></script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!

All versions