Gremlin ORM for Node.js (v1.1.9) providing an object-relational mapping layer for graph databases, currently supporting Neo4j and Microsoft Azure Cosmos DB. It allows defining vertex and edge models with property validation, and running Gremlin queries. Uses the gremlin-javascript client for WebSocket connections. Release cadence appears low, last updated 2018. Development status: maintenance.
npm install gremlin-ormNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to initialize gremlin-orm, define a vertex model, create a vertex, and find a vertex using callbacks.
Consider migrating to active alternatives like gremlin-javascript or type-orm for graph databases.
Use 'new gremlinOrm(dialect)' to instantiate.
For Neo4j: new gremlinOrm('neo4j'). For Azure: new gremlinOrm(['azure', 'partitionName'], ...).Use: const gremlinOrm = require('gremlin-orm'); const g = new gremlinOrm('neo4j');Run: npm install gremlin