Skip to content
/ reaflow Public
forked from reaviz/reaflow

🕸 Node-based Visualizations for React

License

Notifications You must be signed in to change notification settings

UnlyEd/reaflow

 
 

Repository files navigation

🕸 reaflow


Node-based Visualizations for React


REAFLOW is a modular diagram engine for build static or interactive editors. The library is feature rich and modular allowing for displaying complex visualizations with total customizability.

🚀 Quick Links

📦 Usage

Install the package via NPM:

npm i reaflow --save

then add the component with some nodes and edges:

import React from 'react';
import { Canvas } from 'reaflow';

export default () => (
  <Canvas
    nodes={[
      {
        id: '1',
        text: '1'
      },
      {
        id: '2',
        text: '2'
      }
    ]}
    edges={[
      {
        id: '1-2',
        from: '1',
        to: '2'
      }
    ]}
  />
);

🔭 Developing

  • yarn install
  • yarn start
  • Storybook Opens

About

🕸 Node-based Visualizations for React

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 95.4%
  • JavaScript 2.4%
  • CSS 1.5%
  • HTML 0.7%