Skip to content

Commit

Permalink
Added README.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpareja committed Jul 22, 2012
1 parent 36b32ce commit 1e06b41
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
@@ -0,0 +1,14 @@
# Deppy - A simple dependency graph resolver.

Deppy is a JavaScript library for resolving dependency graphs. It handles cycles and multiple independent nodes. Nodes can be defined in any order.

# Serial resolution of dependencies

Deppy will walk the graph and build an array of nodes. The first element in the array has no dependencies while subsequent elements depend on zero or more previous elements. Here is an example of using deppy to build and resolve a graph:

var d = require('deppy').create();
d('a');
d('c', ['b']);
d('b', ['a']);
console.log(d.resolve('c')); // [ 'a', 'b', 'c' ]

0 comments on commit 1e06b41

Please sign in to comment.