Hacker News new | ask | show | jobs
by Tolexx 2095 days ago
I still do monolithic Django with just a sprinkle of js where necessary. I use the following libraries: * Django-allauth for authentication * Django-bootstrap4 for styling * Django-ckeditor atimes for rich text fields etc.

Django monolithic is still good for fast development and quick MVP release. Also SSR is quite and gives fast page loads

1 comments

I totally agree. It's an overkill for most projects to fully separate the backend form the frontend. Django gives you everything you might need to build a fully capable app.

Maybe makes sense for Google, but not for most people working on side projects.