skip to Main Content

So working on a large scale application where I need to develop a front end part.
And we would like it to be SSR for SEO purposes, But when it comes to state management we have redux for that so how we are going to manage it and what should be the server-side and client-side configuration? if possible also share example.
And can we define client-side routing like react-router in next.js?

2

Answers


  1. Use the context api which comes out of the box with react. It good enough to handle most use-cases, redux still has its place but not really required if you’re just building a crud app.

    Example repo here : https://github.com/zeit/next.js/tree/canary/examples/with-context-api

    Login or Signup to reply.
  2. you can consider to use Recoil.js. and again, it depends on the scale of your application

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search