data2graph is a Kotlin-JS web application that helps visualize graphs in a force-directed manner. It is a data2viz port of the original d3.js force-directed graph.
Demo shows graph of an anonymized plagiarism report that was collected for an actual university programming course.

Tool has four configurable preferences:
Data2Viz can be used to visualize any graph json which satisfies the following requirements:
https://tcibinan.github.io origin. See CORS configuration.To show your graph json just add graph_url with your endpoint to data2graph url
https://tcibinan.github.io/data2graph/latest/?graph_url=http%3A%2F%2Fyourendpoint.com%2Fdata.json
You can also start your own instance of data2graph locally
docker run --rm --name data2graph -d -p 8080:80 flaxo/data2graph:0.4
To show a custom graph with your encoded graph json url
http://localhost:8088/?graph_url=http%3A%2F%2Fyourendpoint.com%2Fdata.json
Or you can copy your graph.json to the data2graph container
docker cp graph.json data2graph:/opt/data2graph/graph.json
And show your graph using relative url
http://localhost:8088/?graph_url=graph.json
To start the development server run the command and open the browser at http://localhost:8088/
./gradlew run
To stop the development server run the following command
./gradlew stop
Content type
Image
Digest
Size
47 MB
Last updated
over 5 years ago
docker pull flaxo/data2graph:0.5