Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to Neoclipse [closed]

Tags:

graph

neo4j

I am playing with neo4j to store some data with JAVA. I would like to have a good way to visualize my neo4j database and look through properties etc, mostly to have a feedback and understand what I put in my database.

I tried Neoclipse, but so far it is very buggy and often doesn't load the graph. Is there an alternative graph visualization program?

like image 371
Martin Preusse Avatar asked Oct 22 '22 18:10

Martin Preusse


2 Answers

There is a new solution to explore the content of a Neo4j graph database using a web browser called Linkurious.

It allows you to easily search and visualize nodes and edges.

You can see a few alternative solutions on the Neo4j website.

These alternatives include : - D3js : open-source library for visualization - Gephi : a open-source project on graph visualization - KeyLines : a JavaScript toolkit for visualizing networks

Disclaimer: I'm co-founder of Linkurious and Gephi.

like image 190
Seb Avatar answered Nov 11 '22 09:11

Seb


The easiest thing to do is start the neo4j server and view your graph via the webAdmin: http://docs.neo4j.org/chunked/stable/tools-webadmin.html

Other options are the Gephi plugin for neo4j: https://gephi.org/plugins/neo4j-graph-database-support/ and there's a neo4j blog entry on GraphViz: http://blog.neo4j.org/2012/05/graph-this-rendering-your-graph-with.html

like image 45
Luanne Avatar answered Nov 11 '22 10:11

Luanne