How do I connect a react UI to a nodeJS backend ?
I am currently building a nodejs application using the azure cognitive services API specifically for Text-To-Speech, right now I am building a front end in React so that the user can edit the SSML ( Speech Synthesis Markup Language ) and edit different attributes of the speech with a simple UI which I am currently building. Just for reference, this https://cloud.google.com/text-to-speech/docs/ssml is what SSML looks like, the tags I am trying to turn into buttons/ sliders etc are things like speech tone, pitch and all that. I just have a few questions and hopefully someone can guide me in the right direction.How would I go about to fetch the SSML attributes from the backend to the frontend ?Do I need to use express ?What are some things I should think about for this project so I dont fumble around like an idiot trying to do the wrong things ? Appreciate the time you take answering this :)