DEV Community

Bret
Bret

Posted on

CRUD APP.... which is easier to make it with? REACT or DJANGO

which is easier to create a CRUD app in?
im finding Django to be more strait forward? why does React need so many steps to create/update/add/remove products/items?

Top comments (3)

Collapse
 
medsaad profile image
Ahmed Said-ahmed

Django and React can work side by side. React does not PERFORM the CRUD operations (except if you are working with firebase or couchdb may be) but other than that you need a server side language like Django to connect with a database and manipulate data.

Collapse
 
yobretyo profile image
Bret

ok, im referont to creating a user input way to just add a product vs adding info to map over in useState manually. or, is there a way to add a product by itself in a list in react? or do you have to do that manually without a backend like Django/Python?

Collapse
 
shadowtime2000 profile image
shadowtime2000

You are comparing tools from two different categories. React is the frontend while Django is the backend so you can't really compare it like that.