Does Reflex support standard front-end and back-end separation? #6106
-
|
I don't understand front-end knowledge like Vue/React, but I am very good at Python back-end I want to write front-end UI using Python and compile it into standard front-end code, which can be hosted directly on nginx without the need for websocket. The front-end and back-end only use standard API communication May I ask if Reflex can meet these requirements? If possible, what should I pay attention to? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
it is technically possible. you can pass |
Beta Was this translation helpful? Give feedback.
Reflex is, by nature, a monolithic framework where the frontend and backend code are tightly coupled. This is what allows for fast iteration speed and development.
We don't currently provide documentation for stateless mode, because it is so limited.
In the future, i'd like to see a ClientState and converting some Var Operation-only methods to be considered "frontend event handlers", but these things are not currently the team's focus.