From all the way back in 2021 until now, the backend has been using TypeScript and Prisma. I like prisma, it makes database querying easy.
What wasn't easy was keeping track of URL query parameters and body JSON data in Express, and it seems that nobody has really solved that problem outside of just going with a full on JS framework.
With some help from my Discord server community, I started moving over to ASP.NET and EF. It was rough, and it still is pretty rough, but it helps so much that I can just import the types and DTOs from s&box so they're always just synced.
The entire thing being fully typed now is also nice. I like a lot of parts of it, but I've definitely gotten spoiled by the hotloading in s&box, the one in ASP.NET is far from that good.
I had to rework all the data structures and web requests, so this took most of the development time this month.