So I've been looking around for a solution to render React JS components on my server. I use flask and have found a few pieces of software that help with this (https://github.com/markfinger/python-react and https://github.com/defrex/django-react) and I don't really like the idea of having a separate Node process for the render server.
So I was wondering if I could use something like Pyv8, PyReact, and aysincio to render it server side and have my front end application isomorphic.
If worse comes to worse I'll use the server render but I feel like it adds a layer of complexity (even though it's not too horrible of a solution) that doesn't really need to be added.