Reputation: 1891
My existing project I have :
Frontend Framework - PHP Codeigniter and PHP Laravel
Backend Framework - JAVA Springboot
I'm trying to change Frontend Framework to ReactJS. I want to know what is the most popular backend framework to use with ReactJS and Why? Please explain. Should I change Backend Framework from Springboot to other one such as ExpressJS?. How about the performance?.
Thank in advanced.
Upvotes: 3
Views: 1917
Reputation: 1707
I personally prefer NodeJS + ExpressJS because this framework are js based and widely support by community.
Upvotes: 2
Reputation: 751
I can only answer you from personal Experience.
1. NodeJS + ExpressJS This combination is the most basic version of a backend for React but very effective. For most of you application this should be enough. You can achieve everything you want with this. The performance is great.
2. Strapi Highly Recommended Strapi (Official Page) is a great framework as backend. Most of the typical functions you want for a backend are already implemented or can be easily added. Performance is also great.
3. Meteor Recommended Meteor (Official Page) is an all around package. Many Plugins and a active community. Excellent for beginner and great for experienced user. Easy to setup and it also manage you database for you if you want. Performance is ok
Upvotes: 1