I have two applications
- react.js + node.js app.
-
stand alone python app
I need to merge these two apps and distribute this single app in single executable/binary. I understand i need to get rid of node.js and use python as my backend and change calls going from react-node to react-python. And for the latter i need to bring may be Flask.
For packaging i can use PyInstaller or cx_freeze.
Any pointers what is the best way to make this merge and create single executable/binary so that final workflow should be like below :
1) User gets the single executable/binary
2) Runs/Executes the executable/binary
3) This fires up the application which can be accessed on browser
4) User will be able to send request from UI (React) to Backend (Python)
So basically the single executable/binary has python env, python backend and react(UI) code.
from Single executable with Python and React.js
No comments:
Post a Comment