I am very new to node and I have a small node application (mysql database integration) on whose output another JavaScript class in my main application depends. Are there some ways to execute my node app then automatically once my main program is invoked (without using a 'node' command and the command line at all)?
In particular, my main program provides some functionality for a web app's interactivity and my desired aim is to be able to start and run my node app automatically once some particular actions are done within my main application (therefore, it would be perfect to have some JavaScript code that automatically starts my node app).
Thanks in advance!