All Projects → wbkd → React Flow

wbkd / React Flow

Licence: mit
Highly customizable library for building interactive node-based UIs, editors, flow charts and diagrams

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to React Flow

Gojs
JavaScript diagramming library for interactive flowcharts, org charts, design tools, planning tools, visual languages.
Stars: ✭ 5,739 (-31.25%)
Mutual labels:  graph, flowchart, typescript-library
Flutter graphite
Flutter widget to draw interactive direct graphs (flowcharts) of any complexity in a tile rectangular manner.
Stars: ✭ 23 (-99.72%)
Mutual labels:  graph, flowchart
react-loading-icons
A TypeScript-React edition of Sam Herbert's amazing SVG Loaders.
Stars: ✭ 32 (-99.62%)
Mutual labels:  react-library, typescript-library
Shenzhen Go
Experimental visual Go environment
Stars: ✭ 450 (-94.61%)
Mutual labels:  graph, flowchart
Logicflow
A front-end framework for process visualization.
Stars: ✭ 973 (-88.34%)
Mutual labels:  graph, flowchart
Vzl
💠 DOT Language Live Editor (GraphViz)
Stars: ✭ 83 (-99.01%)
Mutual labels:  graph, flowchart
X6
🚀 JavaScript diagramming library that uses SVG and HTML for rendering.
Stars: ✭ 2,686 (-67.82%)
Mutual labels:  graph, flowchart
Diagram Maker
A library to display an interactive editor for any graph-like data.
Stars: ✭ 2,086 (-75.01%)
Mutual labels:  graph, flowchart
stan
🔨 Collection of front-end engineering tools
Stars: ✭ 19 (-99.77%)
Mutual labels:  react-library, typescript-library
LGCN
Tensorflow Implementation of Large-Scale Learnable Graph Convolutional Networks (LGCN) KDD18
Stars: ✭ 45 (-99.46%)
Mutual labels:  graph
Graph Based Deep Learning Literature
links to conference publications in graph-based deep learning
Stars: ✭ 3,428 (-58.94%)
Mutual labels:  graph
validate-polish
Utility library for validation of PESEL, NIP, REGON, identity card etc. Aimed mostly at Polish enviroment. [Polish] Walidacja numerów pesel, nip, regon, dowodu osobistego.
Stars: ✭ 31 (-99.63%)
Mutual labels:  typescript-library
Subway
Out-of-GPU-Memory Graph Processing with Minimal Data Transfer
Stars: ✭ 30 (-99.64%)
Mutual labels:  graph
Opennars
OpenNARS for Research 3.0+
Stars: ✭ 264 (-96.84%)
Mutual labels:  graph
tRakt-shiny
Using trakt to graph show data and such. The on-it's-way-out incarnation of trakt.jemu.name
Stars: ✭ 17 (-99.8%)
Mutual labels:  graph
Cypher For Gremlin
Cypher for Gremlin adds Cypher support to any Gremlin graph database.
Stars: ✭ 267 (-96.8%)
Mutual labels:  graph
profdump
Processes profiling output of the D compiler
Stars: ✭ 15 (-99.82%)
Mutual labels:  graph
Data-structures
Data Structures in Java
Stars: ✭ 13 (-99.84%)
Mutual labels:  graph
Dagsfm
Distributed and Graph-based Structure from Motion
Stars: ✭ 269 (-96.78%)
Mutual labels:  graph
Bitmeteros
BitMeter OS - a cross-platform bandwidth monitor
Stars: ✭ 266 (-96.81%)
Mutual labels:  graph

react-flow

React Flow is a library for building node based graphs. You can easily implement custom node types and it comes with components like a mini map and graph controls. Feel free to check out the examples or read the blog post to get started.

👉 Next Major Release 👈

We are currently working on the next version. You can find the installation instructions and breaking changes in this PR. Your feedback is highly appreciated :)

React Flow was initially created for datablocks. A node-based editor for transforming, analyzing and visualizing data.

Installation

npm install react-flow-renderer

Quick Start

This is a very basic example of how to use React Flow. You can find more advanced examples on the website.

import React from 'react';
import ReactFlow from 'react-flow-renderer';

const elements = [
  { id: '1', data: { label: 'Node 1' }, position: { x: 250, y: 5 } },
  // you can also pass a React component as a label
  { id: '2', data: { label: <div>Node 2</div> }, position: { x: 100, y: 100 } },
  { id: 'e1-2', source: '1', target: '2', animated: true },
];

const BasicFlow = () => <ReactFlow elements={elements} />;

Community Packages

Development

Before you start you need to install the React Flow dependencies via npm install and the ones of the examples cd example && npm install.

If you want to contribute or develop custom features the easiest way is to start the dev server:

npm start

and the example app via:

cd example && npm start 

The example app serves the content of the example folder and watches changes inside the src folder. The examples are using the source of the src folder.

Testing

Testing is done with cypress. You can find the tests in the integration/flow folder. In order to run the tests do:

npm run test

Maintainer

Moritz Klack • TwitterGithub

Support

If you need custom support or features for your application we are happy to hear from you.

Thanks!

Special thanks to Andy Lindemann for a lot of helpful contributions!


React Flow is maintained by webkid, a data visualization agency from Berlin. If you need help or want to develop react-based tools or data visualizations, get in touch!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].