Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Latest commit

 

History

History
executable file
·
25 lines (17 loc) · 454 Bytes

README.md

File metadata and controls

executable file
·
25 lines (17 loc) · 454 Bytes

ng2-neo4j

Experimental Angular 2 models and services for connecting with the Neo4j REST API.

In development.

Installation

Requires tsc for postinstall.

npm install

Configuration

You have to configure Neo4jSettings in your bootstrap:

provide('Neo4jSettings', {useValue: {
    endpoint: 'http://localhost:7474',
    username: 'neo4j',
    password: 'neo4j42'
}})