Blog
Django & Modern JS Frameworks Session Authentication
Django is one of the most popular backend web application frameworks that exists and it's written in Python. Vue.js is one of the most popular JavaScript tools for adding dynamic features to a web application.Django doesn't need Vue to run. Vue doesn't need Django to run. The combination gives developers an incredibly flexible and dynamic paradigm while also leveraging a number of the built-in benefits that each tool has.
Vue & Vuetify Composable Confirm Dialogs
Create reusable confirm dialogs in Vue using Vuetify’s dialog component. The article shows a Dialog.vue component and a useDialog composable to programmatically trigger confirm/cancel prompts from anywhere in your app
Integrating VueJS 2 into a Django
Integrating Vue into a Django project doesn’t require heavy tooling. This piece outlines a strategy where the Vue dev server handles local development while Django serves the built files in production, enabling gradual migration from a monolith to a microservice
Django Rest Framework rich related serializer
Readable API responses shouldn’t compromise write operations. This article introduces a custom serializer field derived from DRF’s PrimaryKeyRelatedField that returns nested objects for reads while accepting primary keys for writes, yielding cleaner responses without sacrificing flexibility.