All Projects → AlexImb → vue-dag

AlexImb / vue-dag

Licence: MIT License
🏗 Data-driven directed acyclic graph (DAG) builder for Vue.js

Programming Languages

Vue
7211 projects
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to vue-dag

laravel-dag-manager
A SQL-based Directed Acyclic Graph (DAG) solution for Laravel.
Stars: ✭ 24 (-35.14%)
Mutual labels:  dag, directed-acyclic-graph
batching-toposort
Efficiently sort interdependent tasks into a sequence of concurrently-executable batches
Stars: ✭ 21 (-43.24%)
Mutual labels:  dag, directed-acyclic-graph
obyte-hub
Hub for Obyte network
Stars: ✭ 17 (-54.05%)
Mutual labels:  dag, directed-acyclic-graph
breaking cycles in noisy hierarchies
breaking cycles in noisy hierarchies
Stars: ✭ 59 (+59.46%)
Mutual labels:  dag, directed-acyclic-graph
django-postgresql-dag
Directed Acyclic Graphs with a variety of methods for both Nodes and Edges, and multiple exports (NetworkX, Pandas, etc). This project is the foundation for a commercial product, so expect regular improvements. PR's and other contributions are welcomed.
Stars: ✭ 23 (-37.84%)
Mutual labels:  dag, directed-acyclic-graph
react-monitor-dag
A React-based operation/monitoring DAG diagram.(基于React的运维/监控DAG图)
Stars: ✭ 57 (+54.05%)
Mutual labels:  dag
directed graph
Dart implementation of a directed graph. Provides algorithms for sorting vertices, retrieving a topological ordering or detecting cycles.
Stars: ✭ 37 (+0%)
Mutual labels:  directed-acyclic-graph
ipfs-dag-builder-vis
See how the DAGs get built
Stars: ✭ 19 (-48.65%)
Mutual labels:  dag
DaggerGpuMiner
Standalone GPU/CPU miner for Dagger coin
Stars: ✭ 21 (-43.24%)
Mutual labels:  dag
findr
Fast Inference of Networks from Directed Regulations
Stars: ✭ 19 (-48.65%)
Mutual labels:  dag
apollo
An experimental distributed ledger platform based on a sea of DAG Nodes
Stars: ✭ 33 (-10.81%)
Mutual labels:  dag
algorithms
Algorithms in python and C
Stars: ✭ 71 (+91.89%)
Mutual labels:  dag
hamilton
A scalable general purpose micro-framework for defining dataflows. You can use it to create dataframes, numpy matrices, python objects, ML models, etc.
Stars: ✭ 612 (+1554.05%)
Mutual labels:  dag
dag
Simple DSL for executing functions in Go
Stars: ✭ 85 (+129.73%)
Mutual labels:  dag
rosie
A task building library that allows combining custom logic with the execution of command line programs. Designed around a directed acyclic graph allows for expressing non-trivial procedures.
Stars: ✭ 27 (-27.03%)
Mutual labels:  directed-acyclic-graph
react-visual-modeling
A DAG React Component for visualization modeling, suitable for UML, database modeling, data warehouse construction.(一个基于React的数据可视化建模的DAG图,适用于UML,数据库建模,数据仓库建设等业务)
Stars: ✭ 96 (+159.46%)
Mutual labels:  dag
Slack-Stock-DAG
This repository holds a list of cool resources for Silica.
Stars: ✭ 94 (+154.05%)
Mutual labels:  dag
hathor-core
HathorNetwork's fullnode core
Stars: ✭ 57 (+54.05%)
Mutual labels:  dag
go-pdu
Parallel Digital Universe - A decentralized social networking service
Stars: ✭ 39 (+5.41%)
Mutual labels:  dag
lineage
Generate beautiful documentation for your data pipelines in markdown format
Stars: ✭ 16 (-56.76%)
Mutual labels:  dag

🏗Vue DAG Builder

Data-driven directed acyclic graph (DAG) visual builder for Vue.js

GitHub Actions Netlify Status npm npm vue2 GitHub

Examples

vue-dag-example.netlify.app

Screenshot

eddy-analytics.org

Screenshot Eddy

Installation

npm install --save vue-dag

or

yarn add vue-dag

Import and register the component

import VueDag from 'vue-dag';
components: {
    VueDag
}

Use it in templates

<vue-dag v-model="graphData"></vue-dag>

The component does not include any CSS. You'll need to import it separately:

import 'vue-dag/dist/vue-dag.css';

Alternatively, you can import the SCSS version and overrite variables and styles

@import 'vue-dag/src/scss/vue-dag.scss';

Full documentation: https://vue-dag.netlify.com/

Project development setup

Installs dependencies

yarn install

Compiles and hot-reloads for development

yarn run serve

Lints and fixes files

yarn run lint

Runs unit tests

yarn run test:unit

Builds as library

yarn run build:library
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].