Making a web interface for neo4j
- by user2898839
I have a local neo4j database server and I want to build a web interface
using javascript. Ideally I want to do all the querying and display the result
client side for the website.
I am mostly a Java programmer and unfortunately don't have much experience with
Javascript.
How can I do a cypher query from the website and return the result in a format which I can display easily in a table for example?
I have seen examples of doing the querying server side with servlets or node.js but really would like to just have the neo4j server and the website client.
I would be interesting in seeing a small working example if it is at all possible.
Thanks for your time.