I am new to Node. I saw many examples on Rapid API where we use the axios
package to make requests to an API. But we can also do the same with fetch
method in JavaScript frontend. So should I make API requests from frontend JavaScript using fetch
or should I use my backend to make API requests using axios
?
Thank you in advance for any help!