Home:ALL Converter>How to run express and angular in parallel with nx?

How to run express and angular in parallel with nx?

Ask Time:2020-04-06T17:24:17         Author:Jon Sud

Json Formatter

I'm new to nx and I want to create node express application with angular application.

So I ran those commands:

 npx create-nx-workspace // empty, nx. myorg-repo
 cd myorg-repo
 npm install --save-dev @nrwl/angular
 npm install --save-dev @nrwl/express

 nx g @nrwl/express:app express-app
 nx g @nrwl/angular:app ng-app

Now when I run npm run start or npm run build it only run one project.

My question is how to run start (serve) command in parallel with nx?

Author:Jon Sud,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/61056616/how-to-run-express-and-angular-in-parallel-with-nx
Steve Maris :

nx run-many --parallel --target=serve --projects=project1,project2,project3\n\nMore info on running commands in parallel with nx => https://nx.dev/previous/angular/cli/run-many",
2020-12-09T16:09:13
yy