Issue
This may be a weird question, and not exactly about programming itself, but let me elaborate anyway. I hope you understand.
So I myself am not a professional programmer, only learned Django this year to build the prototype of a web service I'm thinking. Now I'm able to create a basic CRUD application using Django for both front and back end.
Then I recently started co-working with a full-stack programmer, who uses React for front-end and Django for back-end. In our project, there are several independent applications, with separate templates/views/models of course, and I decided to take one of them and work on it since we were running out of time.
The problem is that I know nothing about React, so I thought I would work on the application purely with Django, and he could work on the rest of the project with React+Django.
In this case, is it possible to "work on some parts of the project purely with Django and the rest with React+Django combination"? Or would it cause any problem or error in the entire project?
Thank you very much in advance. Please let me know if you need further information.
Solution
For backend
, it can be possible and many do that, but with different servers that have special services for defined tasks.
but for the front
, personally, never seen an approach like this, but It's not likely that it be possible.
there are different dependencies in the project for both Django
and react
. maybe with two different servers, it is possible, but it's not recommended.
if you try to learn the concepts of react
and do your part in react it will be a cleaner code.
Answered By - behzad
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.