Is there any options to use powerful backend framework with frontend framework on the same server?
Let me be more specific.
For example, in my projects I use Django framework, really like it and want to use it in future projects. But for me it is a best way to use frontend framework to build web-application style portals. For this reason I use ReactJS, because for me it's a really fast! But I don't like NodeJS and don't want to use it in my projects.
But I have problem. For example, in one of our projects we use real time chat. For that we built a ligament NodeJS+SocketIO+Redis. Besides that on backend we have Django+uWSGI+PostgreSQL. And in the base part: Django REST Framework + React.
Is there any way to use frontend JS framework with Django without creating so complicated system?
In my opinion: I need fast scalable solution for frontend, which can connect with Django fast.