I have in mind a custom schematic that I will use in coordination with "ng serve" that would automatically launch a helper microservice written in Node at the same time. Is this possible to do within a schematic, or do I need to launch it manually first, then serve the Angular app?
For context, this is going to be a tool used during the development of an Angular app, so both the Node microservice and the Angular app will be hosted on the same server, just with different port numbers.
I've tried searching Google and S/O, but all the docs I've read on custom schematics seem to focus on the directory and file writing capabilities.