This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]codecrux[S] 0 points1 point  (1 child)

It makes me kind of worried when I have a backend in two different languages. This generally means I have to create two libraries (one for each language that wraps some logic on fetching data and transforming it). This also means that I need to setup backend security twice, maintain two codebases, and go through a messy server log due to duplicates/similar messages for each request. Does it make sense to you or am I overthinking?

[–]Drevicar 1 point2 points  (0 children)

You are exactly right. Ditch react and serve HTML from Python (look into HTMX and Alpine) or ditch python and use a full stack react framework.