Django React/Redux Base Project
github.com
Django React/Redux Base Project
1–10 of 79 posts
Re: Django React/Redux Base Project
#2Re: Django React/Redux Base Project
#3Re: Django React/Redux Base Project
#4When working with a large (read: quantity of models) REST API, is there a parallel Redux pattern to Ember's ember-data?
Re: Django React/Redux Base Project
#5Re: Django React/Redux Base Project
#6When working with a large (read: quantity of models) REST API, is there a parallel Redux pattern to Ember's ember-data?
Re: Django React/Redux Base Project
#7I am currently using Django + React on a personal project and took a slightly different route, no pun intended. Rather than using react router, as I never really liked client side routing, I use Django views to hydrate all the necessary props for the page and have a base template that loads the React component with the props. Since each page / component is fairly self-contained I also decided against using any Redux / Flux implementations. Furthermore, it only takes a few hours of work to get server side rendering up and running thanks to react + node.
Re: Django React/Redux Base Project
#8Page load times are about .5 seconds for me, with lots of graphics. Also, I'm pretty sure it's faster than React.
Is this something people want to use that I should package up into its own product? It's a little bit of code but mostly methodology discipline.