2

I have seen next.js example to use redux. But is there any easy way to setup redux with next.js? I want to setup redux how i used to setup with react.js

3

5 Answers 5

5

Assuming you have knowledge in Redux with React.

Firstly, install these packages

$ npm install next-redux-wrapper react-redux redux redux-thunk --save

$ npm install redux-devtools-extension --save-dev


Override or create the default App, create the file ./pages/_app.js as shown below:

import withRedux from 'next-redux-wrapper'
import { Provider } from 'react-redux'
import { withRouter } from 'next/router'
import App from 'next/app'

import createStore from 'store/createStore'

class MyApp extends App {
  render () {
    const { Component, pageProps, router, store } = this.props
    return (
          <Provider store={store}>
              <Component router={router} {...pageProps} />
          </Provider>
    )
  }
}

export default withRedux(createStore)(
  withRouter(MyApp)
)

In your pages/component, you can use Redux as you do normally.

Sign up to request clarification or add additional context in comments.

1 Comment

for store I am getting below error. Property 'store' does not exist on type 'Readonly<AppInitialProps & { Component: NextComponentType<NextPageContext<any>, any, {}>; router: Router; __N_SSG?: boolean | undefined; __N_SSP?: boolean | undefined; __N_RSC?: boolean | undefined; }> & Readonly<...>'
1

https://github.com/vercel/next.js/tree/canary/examples/with-redux-wrapper

cant get any easier than this

2 Comments

want to use with this "npx create-next-app"
this repo comes with preconfigures redux setting, you just need to change according to your needs, else just copy how this repo did the setting on your empty nextjs app.
1

Here is my simplest way, you can follow it. https://github.com/imimran/next-redux-example

Comments

1

I would recommend using redux toolkit because it reduces boilerplate code in redux...

With createSlice you create Action and Reducer at the same time. And in case of dispatching API calls to the backend and performing suitable state mutations for pending, fulfilled and rejected API calls, createAsyncThunk is the Best!

As per my personal experience, if you are asking this question just for initial learning, then your first setup that you attached as an answer is enough but for a real App, so should definitely go with Redux Toolkit. You can check this sandbox example

Comments

1

First i created simple next.js app with "npx create-next-app" Then i installed "npm i redux react-redux redux-thunk redux-devtools-extension

Then I created general redux setup in a folder called "store" and folder structure is like the following image and code is for store.js

enter image description here

Code is for reducer > index.js enter image description here

FINALLY created a _app.js file in pages folder and code is like this enter image description here

If anyone still have question about setup please let me know...

4 Comments

Please note that we are officially recommending to use redux toolkit over vanilla redux. It will save you a ton of boilerplate down the road. Check out this page of the official redux tutorial for a short introduction.
Exactly! @Nasir Khan I updated my answer for you. Please accept and upvote my answer, if it solves your problem.
I don't want to use any other tool. I want to use react redux setup where i was comfortable. And i setup that way, Thank You.
Where is a picture of _app.js? You just duplicated reducer > index.js???

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.