sendilkumarn / neo4j-browser

Neo4j's client application. Query, visualize, manage.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neo4j Browser

Explore the graph, one query at a time.

Neo4j Browser is Neo4j’s built-in client application, a mashup of a REPL, data visualization and lightweight IDE.

Goals

  • developer focused

  • every interaction is a demonstration

  • uses only public APIs

  • for modern browsers, with reasonable fallbacks

Development

Set up your environment
  • Install node.js

  • Clone this Github repository

  • npm install

    This installs npm modules needed to build the browser code.

  • npm install -g grunt-cli

    This puts the grunt command on your path.

Run in development mode
  • Run Neo4j server (from a downloaded distribution of Neo4j, or from your IDE)

  • grunt server

    This listens on port 9000, serving up static documents, and forwarding other HTTP requests to Neo4j on port 7474. Bolt requests are not forwarded, they are sent directly to the Neo4j server on port 7687. Any local changes to the browser code will be applied immediatley by reloading the page.

Sync server

To setup a local sync login server go to project root and invoke node sync-server/server.js. An express server now started on https://localhost:9001 with self signed TLS certificates.

Feedback

Adding a new Cypher keyword

Look at:

  • Detecting Cypher: app/scripts/init/commandInterpreters.coffee

  • app/components/cypher/index.js

  • app/scripts/codemirror-cypher.coffee

Contributing

All bug reports, feature requests and pull requests are very welcome.

Licensing

Neo4j is an open source product. We support a Community edition under the GPLv3 license.

About

Neo4j's client application. Query, visualize, manage.

License:Other


Languages

Language:JavaScript 80.3%Language:CSS 8.8%Language:CoffeeScript 5.3%Language:HTML 5.1%Language:Smarty 0.2%Language:Java 0.1%Language:Shell 0.0%Language:Ruby 0.0%Language:Makefile 0.0%Language:Scala 0.0%