Is it possible to start both angular default server(port:4200) and node.js(port:8080) using npm?
packages.json:
"start":"ng serve && node server.js"
If I run npm start, only angular's server(4200) is started running but not node's server(8080).
Is there a way to make both the servers has to run on their respective ports at same time using npm.
Need someone's help.