-
I'm wondering what's the "reflex way" of implementing a client-side file encryption, without uploading anything to the backend? I want the user to pick a file from their computer, the app would generate a key, encrypt the file and save it locally. |
Beta Was this translation helpful? Give feedback.
Answered by
picklelo
Aug 28, 2024
Replies: 1 comment 1 reply
-
Any logic written in the state will happen on the backend by default. If you want to have client side logic, you can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kalmarz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any logic written in the state will happen on the backend by default. If you want to have client side logic, you can use
rx.call_script
to run Javascript on the browser. See here for more (this is our backdoor to use plain JS within Reflex)