npm install js-neo4j
{Neo4js} = require('js-neo4j') neo = new Neo4js() neo .createNode() .then((data) -> console.log data ) .fail((data) -> console.log 'error', arguments ) neo .queryBuilder() .start('*') .return('*') .execute() .then((data) -> console.log data ) .fail((data) -> console.log 'error', arguments )
Check out api document
Or test generator document
All Neo4js CRUB interface come with little shorthand
neo.createNode() = neo.cNode() neo.readNode() = neo.rNode() neo.updateNodeProperty() = neo.uNodeProperty() neo.deleteNode() = neo.dNode() // And etc
npm test
Neo4j, 2.0
Neo4j REST API wrapper for Node.js
Installation
npm install js-neo4j
Usage
Check out api document
Or test generator document
All Neo4js CRUB interface come with little shorthand
Development
npm test
Required
Neo4j, 2.0
TODO