Skip to content

anbcodes/layoutr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Layoutr

A graph layout web application

Installation

After a git checkout, run the following to serve the application locally:

npm i
npm run serve

Usage

  • Click "UPLOAD CSV OR JSON" to upload a file of the form:
source,target
a,b
b,c
c,d
d,a

for CSV and

{
    "nodes": [
    { "id": "a" },
    { "id": "b" },
    { "id": "c" },
    { "id": "d" }
  ],
  "edges": [
    {
      "source": "a",
      "target": "b"
    },
    {
      "source": "b",
      "target": "c"
    },
    {
      "source": "c",
      "target": "d"
    },
    {
      "source": "d",
      "target": "a"
    }
  ]
}

for JSON

  • Click "Start Layout".
  • Play with the controls!

About

A graph layout web application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 55.0%
  • Vue 45.0%