Angular2 / ngrx and API calls

I have been studying ngrx (ngrx / store) lately. I learned some classic examples on the net (todo app). Great example. Now I want to go to the next level by allowing my ngrx application to make some API calls. Are there any examples or recommendations for setting up the ngrx (redux) application to make and process api calls?

I understand that api causes side effects in the context of my redux application (functional programming paradigm). I am wondering how / where to implement API calls in a redux application.

+6
source share
1 answer

Ngrx has its own ngrx / effects side effects library. Additional Information:

There are not many resources in this library. You can find it here:

  1. https://gitter.im/ngrx/store?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
+6
source

All Articles