Run an App From Code
To launch another application from your app, you should first create an app instance and then invoke its run()
method. For example:
Example 1: static app module import
import { MyOtherApp } from "nodeacta:Samples.MyOtherApp";
...
var otherApp = new MyOtherApp( maybe some args: AppArguments );
var result = await otherApp.run();