1.0.0 • Published 8 years ago

category-graph v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

Category Graph

npm install category-graph

/**
 * Graph
 * categories are "lines" in a Graph
 * that have a list of Node IDs that
 * point to Nodes 
 */

const b = new Graph();

b.addNode({
  id: 'test_id',
  categories: ['action_games']
});

b.addNode({
  id: 'test_id',
  categories: ['action_games', 'racing_games']
});

b.addNode({
  id: 'overwatch',
  categories: ['action_games']
});

console.log(b, b.getNode('test_id'));
1.0.0

8 years ago