npm install neo4js
{Neo4js} = require('neo4js')
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
- Start Neo4j server
- Run
npm test
Neo4j, 2.0
- Cypher sanitization
- Cover remaining api
- More documentation
- Integrate with Travis CI
- Browserify?
- Cache?