Skip to content

inolen/titan-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

titan-node

Wrapper around gremlin-node to provide out of the box support for Titan graph database.

gremlin-node does not include the jar files for Titan, nor does it make any assumptions based on using Titan as a backend. This project customizes gremlin-node to make it easier to get up and running:

  • includes the appropriate Java jar files for Titan 0.4.1 in the classpath
  • adds Titan-specific enums and data types to the gremlin object (e.g. Geo and Geoshape)
  • adds loglevel option to the gremlin constructor to control Titan verbosity. see logback's documentation for all available levels
  • passes the recommended runtime flags to the JVM instance instantiated by gremlin-node

Installation

$ npm install titan-node

Quick start

var Titan = require('titan-node');
var gremlin = new Titan.Gremlin({ loglevel: 'OFF' });

var GraphOfTheGodsFactory = gremlin.java.import('com.thinkaurelius.titan.example.GraphOfTheGodsFactory');

var graph = GraphOfTheGodsFactory.createSync('testdirectory');
var g = gremlin.wrap(graph);

g.V('name', 'saturn').next(function (err, saturn) {
  g.start(saturn).in('father').in('father').next(function (err, grandchild) {
    grandchild.getProperty('name', function(err, name) {
      console.log(name);
    });
  });
});

About

Wrapper around gremlin-node to provide out of the box support for Titan graph database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published