js-neo4j
v0.1.0
Published
Neo4j REST API wrapper for Node.js
Downloads
2
Readme
Neo4j REST API wrapper for Node.js
Installation
npm install js-neo4j
Usage
{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
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
Development
- Start Neo4j server
- Run
npm test
Required
Neo4j, 2.0
TODO
- Cypher sanitization
- Cover remaining api
- More documentation
- Integrate with Travis CI
- Browserify?
- Cache?