I'm currently learning Angular and I have a question. How are we supposed to use nodeJS as a backend for our project.
To launch a dev angular project, you need to ng serve
and to launch a server nodes, you need to node app.js.
So what are we supposed to do first ? launch a nodeJS server and then ... what ?
or
ng serve the angular app and then... what ?
I'm sorry if my question sound stupid for some, but I'm really trying to understand how it works here.