Hey Everyone,
I’d like to share my new project I’m calling Django Render. My Goal with this project is to make it as easy as possible to build and maintain React frontends for Django.
Github: GitHub - kaedroho/django-render: The simple way to build Django applications with React frontends
Website and docs: https://django-render.org/
Django Render allows you to build a fully client-rendered React application that is backed by Django views. It also supports Django forms, session authentication and messages.
It works by routing all requests through your Django URL config and the views return JSON (instead of HTML) describing to the frontend what should be rendered. This means you don’t need to build API clients, client-side routing, and all application logic can be on the server.
I started working on it as a way to port Wagtail CMS’s front-end to React. I’ve since found it to be a simple and productive way to build any kind of application with Django and React. So I’ve been working on turning this into an open source project so that I can use it to build open-source apps and find others who are interested in working on it with me.
I’ve just released 0.1rc1, so the final 0.1 release is due in a couple of weeks. Let me know what you think!