When using FLUX architecture, which framework do you prefer to interact with the remote server/api?
Flux doesn't make any assumptions regarding how you talk to your backend server/apis. You can use plain XHRs, jQuery $.ajax, fetch etc - basically anything you like.
Prashant Abhishek
Co-founder at AltCampus
I use Alt and Redux as Flux implementation. In case you are asking about async API calls, you can call APIs using normal ajax request and use the collected data to update store. In Redux, you can use redux-thunk for performing async actions.