I used to be such a huge Django fan, and in many ways I still am. I've built more than one business around it. For the past six or seven years though, I've found Nodejs to just be superior in every aspect other than the automatic admin. Strapi has some interesting options there though.
Every aspect? The underlying language must be another one no? Python isn't perfect, but it's a lot more pleasant to work with than Javascript
New Features in Django 3.2
11–14 of 14 posts
Re: New Features in Django 3.2
#12Django 3.2 has only been released as a beta 1. Title is a bit click-baity and feature set can still evolve.
That’s not really correct: beta marks feature freeze for the release. So there will be bug fixes before 3.2 final lands, but no new features.
Re: New Features in Django 3.2
#13I used to be such a huge Django fan, and in many ways I still am. I've built more than one business around it. For the past six or seven years though, I've found Nodejs to just be superior in every aspect other than the automatic admin. Strapi has some interesting options there though.
The power of Django (imho) is in how you can define data models only once, and out of them get excellent database migrations, database operations, form validation, API serialization/deserialization, and an admin interface. Is there anything in Node.js land that comes even close to this level of integration? Last time I worked on a Node app, I had to define the data model once for the ORM (Objection), again when writi…
Re: New Features in Django 3.2
#14Earlier quoted context omitted.
That’s not really correct: beta marks feature freeze for the release. So there will be bug fixes before 3.2 final lands, but no new features.
I stand corrected. So what happen if a major bug is found late in the process ? I suppose either the feature is dropped for this release or the release delayed until the bug is fixed and the feature is kept. Do you know which is it ?