DEV Community

Cover image for Started with Redux Toolkit
SAIFUL ISLAM FAHIM
SAIFUL ISLAM FAHIM

Posted on

Started with Redux Toolkit

What is Redux?
Redux is an open-source JavaScript library for managing and centralising application state.

Why is it more preferred?
While working as a Front-end Developer or Full Stack Developer, many engineers encountered Redux. But Recently Redux Team launched Redux Toolkit, an officially recommended and a SOPE library that stands for Simple, Opinionated, Powerful, and Effective state management library. It allows us to write more efficient code, speed up the development process, and automatically apply the best-recommended practices. It was mainly created to solve the THREE MAJOR ISSUES with Redux:

Configuring a Redux store is too complicated
Have to add a lot of packages to build a large scale application
Redux requires too much boilerplate code which makes it cumbersome to write efficient and clean code.
It also provides the automatic support for Redux Dev-tools Extension and for immer.js library which is a great tool to deal with immutable objects. You can also use the various predefined functions of Redux Toolkit which not only speeds up the process but also saves time.

Dependencies that comes along with Redux Toolkit:

  • immer
  • redux
  • redux-thunk
  • reselect

Purpose​
The Redux Toolkit package is intended to be the standard way to write Redux logic. It was originally created to help address three common concerns about Redux:

"Configuring a Redux store is too complicated"
"I have to add a lot of packages to get Redux to do anything useful"
"Redux requires too much boilerplate code"
We can't solve every use case, but in the spirit of create-react-app and apollo-boost, we can try to provide some tools that abstract over the setup process and handle the most common use cases, as well as include some useful utilities that will let the user simplify their application code.

Redux Toolkit also includes a powerful data fetching and caching capability that we've dubbed "RTK Query". It's included in the package as a separate set of entry points. It's optional, but can eliminate the need to hand-write data fetching logic yourself.

These tools should be beneficial to all Redux users. Whether you're a brand new Redux user setting up your first project, or an experienced user who wants to simplify an existing application, Redux Toolkit can help you make your Redux code better.

Installation​
Using Create React App​
The recommended way to start new apps with React and Redux is by using the official Redux+JS template or Redux+TS template for Create React App, which takes advantage of Redux Toolkit and React Redux's integration with React components.

Redux

npm install redux

Redux + Plain JS template:

npx create-react-app my-app --template redux

Redux + TypeScript template:

npx create-react-app my-app --template redux-typescript

You can also go to the redux documentation page for more knowledge. Here redux inform link: https://redux-toolkit.js.org/introduction/getting-started

collected from redux toolkit

Top comments (2)

Collapse
 
anikbarua34 profile image
Anik Barua Turjoy

Important notes

Collapse
 
tanvir1017 profile image
Tanvir Hossain

It's so helpful to start with redux toolikts. Thanks you 💖