I am trying to make an ionic app with angularjs in the front end and node.js in the back end.
I get the front end part and I have done it in angularjs. But I am not sure how to work with node.js as a back end.
For example I need to make a GET request to a web api with nodejs and use angular to show it in my view. How to make the request with node.js and send it to the angular controller.
I was searching online but I did not see any example or tutorial that could show how angular and node work together.
Any website, tutorial or code snippet in this regard will be very helpful
NodeJS would just act like any server, so you would need to have some end point that returns some data which you should be able to view in your browser via a url. This is the url you would use in your get request from angularjs. See this tutorial for how to implement nodejs as your web server