0
Django-React apps
What are your views on an app using react in frontend and django in backend? What could be the advantages and disadvantages?
3 Answers
+ 1
This really depends on what you are trying to make. React is a powerful framework that can do a lot. But it might be a lot of over head for say a dynamic website or data driven app.
If you are making a full featured application in a browser you have picked a very powerful pair.
+ 1
As long as you use HTTPS as your protocol instead of HTTP your in the same boat as everyone else for security.
You will want to make sure and follow the recommended development pattern for using cors headers securely.
0
Nathan Johnson
Well, what i fear is the security of data when react fetches it from django.. you'll need to use CORS headers and allow data access...
So is data transfer totally safe, or am i just panicking?