agens-viewer
v0.1.5
Published
Simple AgensGraph web UI client that easy to run and use
Maintainers
Readme
AgensGraph viewer UI
This package provides basic web UI and node.js backend to work with AgensGraph using Cypher query language.

Package Info
- name:
agens-viewer - version:
0.1.4
How to use
Installation and basic run example:
$ npm install -g agens-viewer
$ agensvExample of advanced run with customized env:
$ export PORT=7001 \
HOST=0.0.0.0 \
AGENS_PORT=7432 \
AGENS_HOST=0.0.0.0 \
AGENS_USER=myuser \
AGENS_PASSWORD=mypassword \
AGENS_DATABASE=mydatabase \
AGENS_GRAPH_NAME=myagens_graph && \
agensvDevelopment setup and running in watch mode:
$ git clone https://github.com/mrjj/agens-viewer.git
$ cd agens-viewer
$ npm install
$ npm run dev