Trying Django UI Components libraries

Options: https://toolbox.cezimbra.me/lists/django-web-components/

ProjectFirst releaseComponent definitionComponent usageScoped CSSScoped JS
django-bird2024-09-25HTML template in templates/bird/Django template tag for now, HTML tag in the roadmapRoadmapRoadmap
django-cotton2024-06-08HTML template in templates/cotton/HTML tag <c-my-component />
dj-angles2024-10-26HTML template used as {% include %}HTML tag <dj-my-component />Using Shadow DOMUsing Shadow DOM
django-viewcomponent2024-03-12Python class + HTML templateCustom Django template tag {% component ... %}

django-template-partials Link to heading

django-components Link to heading

Archived/unmaintained projects Link to heading

  • django-sockpuppet last commit was in 2021.
  • reactor last commit was in 2023 and it was a Phoenix LiveView like lib.
  • slippers last commit was in 2023.
  • django-web-components last commit was in Feb 2024; requires to define a Python class for each component, which looks annoying:
    from django_web_components import component
    
    @component.register("card")
    class Card(component.Component):
        template_name = "components/card.html"
    

Honorable mentions Link to heading

  • django-unicorn is a reactive component framework. It’s way bigger than only UI components.
  • django-htmx-components is a collection of components for Django and HTMX meant to be copy-pasted into your project.