Should we use redux Persist?

Redux-persist allows you to transform your store depending on the version you want for the app : you can control the version of your store. Migrations are applied on your state before replacing your store data in REHYDRATE step. This version 1 of migration will put my previous number of change where I want.

Read more

Redux mı context API mi?

Context ve Redux aynı şeyler değildir. Context VDOM Tree içerisinde bir düğümde bir veri bağlamı oluşturup bu veriyi Provider ile sağlayıp, Consumerlar ile kullanılabilir olmasıdır. Redux ise State Yönetimini Flux örüntüsü üzerinden gerçekleştirir.

Read more