DEV Community

Discussion on: what Backend is recommended for VUE or REACT?

Collapse
 
matiasvj profile image
Matias Verdier

There is not preferred backend technology to use with Vue or React, you can use wherever you like and feel confortable with, you could write or rewrite your backend in any framework, and as long as the API remains the same your frontend (Vue or React) shouldn't care or know about it.

With that said, is true that you would find more resources using node and Javascript frameworks for the backend simply because it's the same underlying language, making that more common I guess.

I would recommend taking a look to github.com/gothinkster/realworld to see examples of an app build with a lot of different languages and frameworks but using the same API.

Also feel free to ask if you have more questions about this or about a specific tutorial or topic.