DEV Community

Discussion on: Building full-stack web-applications with Angular, NestJS and Nx - a match made in heaven

Collapse
 
wanieldeiss profile image
Daniel Weiß • Edited

Nice article! And that is exactly what i searched for :D

You have an little error in your npm script:
this line : "dev": "concurrently -p=\"{name}\" -n=\"Angular,NestJS\" -c=\"green,blue\" \"npm run start:be\" \"npm run start:fe\"",
should be this: "dev": "concurrently -p=\"{name}\" -n=\"NestJS,Angular\" -c=\"green,blue\" \"npm run start:be\" \"npm run start:fe\"",

Collapse
 
hendrikfoo profile image
Hendrik Richert

Thanks for the bug report :) I've updated the post!