|
|
|
|
|
by almost
865 days ago
|
|
Django because in a word of constantly changing frameworks and approaches it’s nice to have something solid. New versions add improvements but Django is basically still the same as it has been for almost 20 years. It’s really fast to build things with as well and the Admin is amazing (just don’t try to overuse it). Recently HTMX has been a really nice addition, adding some fanciness without writing more JS. Some bits are just easier to do as full on JavaScript components and for those I use React because I know it and it does the job. Just for bits though (often as small as one component in a otherwise vanilla Django form), SPAs are a pain to write and maintain. I have a SaaS so that’s mostly what I’m doing. |
|