Sergey Kamardin
Sergey Kamardin
This function will return all dependencies of a service: ``` js dm.compile('service').then(function(services) { console.log(services)// ['serviceA', 'serviceB', 'serviceC'] //or tree console.log(services); // [{'name': 'serviceA', path: '.../...', 'dependencies': [...]}, {name: 'serviceB'... });...
Add optional `identity` or `tags` field, that can be used for searching needed services by method like `search` or `where`.
Hello! I have tried to use (I think, the already well known) **evil** technique to avoid allocations and copying. This brings about `-19ns` to the benchmark of picking server: ```...