Working with a (huge) tree structure, what would be a better choice: SSR or CSR?

21 views Asked by At

I like to build an app which deals with a tree structure. To get the tree, I need to gather the relationship between nodes to build it up.

I was using React-Redux (CSR) to get data from the DB and build up the tree in the store. Now, it seems that Next.js is better, but it’s a SSR, I’m wondering how the tree structure could be built: each time I’m using it or the structure could be built once (and be updated if needed and we could use it as long as we want to)?

The question could be considered as stupid: I’ve never been a professional programmer, but I like to build apps for myself.

Thank you in advance for your answers.

0

There are 0 answers