0.1.5 • Published 5 years ago

agens-viewer v0.1.5

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

AgensGraph viewer UI

This package provides basic web UI and node.js backend to work with AgensGraph using Cypher query language.

Screenshot of version 0.1.4

Package Info

  • name: agens-viewer
  • version: 0.1.4

How to use

Installation and basic run example:

$ npm install -g agens-viewer
$ agensv

Example 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 && \ 
  agensv

Development setup and running in watch mode:

$ git clone https://github.com/mrjj/agens-viewer.git
$ cd  agens-viewer
$ npm install
$ npm run dev