Описание тега node-neo4j

It uses Neo4j's REST API.

This library supports and has been tested against Neo4j 1.4 through Neo4j 1.8.

Here's a simple example:

var node = db.createNode({hello: 'world'});     // instantaneous, but...
node.save(function (err, node) {    // ...this is what actually persists.
    if (err) {
        console.err('Error saving new node to database:', err);
    } else {
        console.log('Node saved to database with id:', node.id);
    }
});