Hacker News new | ask | show | jobs
by unfixed 497 days ago
Well that's exactly the stack I used for some internal applications in a job I had.

Is a little bit tedious to set everything together, but other than that, is fine.

You most likely will lost some good DX stuff like same types in front and back (like with using tRPC and the like), but in general is pretty good: logic in python, UI in js/ts.

1 comments

Nice! Did you use tRPC to pass server side data from python to javascript?
No, but at the time we were using a monorepo for both backend and frontend, so is feasible to keep an action that checks that the models in the front and the back are aligned on each pull request.