MCPcopy Index your code
hub / github.com/Unitech/pm2 / launchTARModules

Function launchTARModules

lib/API/Modules/Modularizer.js:73–81  ·  view source on GitHub ↗
(cb)

Source from the content-addressed store, hash-verified

71
72 // 2#
73 function launchTARModules(cb) {
74 if (!modules.tar_modules) return cb()
75
76 eachLimit(Object.keys(modules.tar_modules), 1, function(module_name, next) {
77 TAR.start(CLI, module_name, next)
78 }, function() {
79 return cb ? cb(null) : false;
80 });
81 }
82
83 launchNPMModules(cb)
84}

Callers 1

launchNPMModulesFunction · 0.85

Calls 2

cbFunction · 0.85
startMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…