Live data from Hacker News

The Decline of Django

david-dahan.com

171–173 of 173 posts

Re: The Decline of Django

#171
post #36

Seems like a strange bit of feedback to me. My company uses Django as the backend for our REST API and it's simply phenomenal. Django isn't a complete solution out of the box, but that's why things like Django REST Framework [0] exist. It supports JSON-based views and has an excellent serialization layer that can map directly to the ORM models. This setup does NOT help with serving our frontend app, but we're using R…

I think the case for server-side HTML rendering has never been stronger, and of all Django projects I work on, the ones I enjoy most are those that never got on the SPA bandwagon. From both a developer and user point of view I find them much faster and less painful. There are many cases where you really, really don't need the massive amount of extra complexity involved in designing APIs, adding JS frameworks etc. Whe…

Second the recommendation for htmx. It is awesome.

Re: The Decline of Django

#172
Django has never been more popular.

The problem is the group of people who think it is only a back-end for react.

Htmx and alpinejs are trying to debunk that stereotype.

Re: The Decline of Django

#173
post #36

Seems like a strange bit of feedback to me. My company uses Django as the backend for our REST API and it's simply phenomenal. Django isn't a complete solution out of the box, but that's why things like Django REST Framework [0] exist. It supports JSON-based views and has an excellent serialization layer that can map directly to the ORM models. This setup does NOT help with serving our frontend app, but we're using R…

I think the case for server-side HTML rendering has never been stronger, and of all Django projects I work on, the ones I enjoy most are those that never got on the SPA bandwagon. From both a developer and user point of view I find them much faster and less painful. There are many cases where you really, really don't need the massive amount of extra complexity involved in designing APIs, adding JS frameworks etc. Whe…

I like Unpoly[1] a lot. Seems like the perfect companion for django template based projects. It's like htmx but with more features.

https://unpoly.com/

Post reply on HN