Message from JavaScript discussions

November 2017

— There is a lot of that in the lib, sub-strategies that rely on others

— 

That's why I want to add more... you can run any number at once, and they will work together towards a common goal

— 

diffPaths -> paths -> nodePaths -> bfsIterator

   |

   V

 diff

— So really, when you have that composition, anything is possible

— Since you can re-use everything

— The tests for the lib are extensive :)

— It is kind of funny because the lib can be used to run it's own tests... for instance it can diff objects that are returned against known correct data... I had it testing itself for awhile but decided to write simpler test-only versions of those algorithms so there was no dependency like that

Message permanent page

— Just add some more. I spent 2 years building an algorithm cooperation framework so it's ready for a lot at once

Message permanent page

— You could chain together hundreds of algorithms if you wanted... I originally was going to use promises to do this but decided instead on a more manual chaining method with direct calls, for more flexibility

Message permanent page

— What like design?

— Entry method (gets run once at start) for filter, it runs the entry methods for clone and paths as an example:

entry: function (state) {
strategies.clone.entry(state);
strategies.paths.entry(state);
state.pendingPaths = [];
},

Message permanent page

— I am not very interested in web design but I have 12 years of experience in it