0.4.0
reflex
components that wrap Clerk react components (@clerk/clerk-react
) and interact with the Clerk backend API.Note: This is intended to be roughly a drop-in replacement of the kroo/reflex-clerk
package that is no longer maintained.
async/await
for all requests to the Clerk backendon_load
events that require knowledge of user authentication status. (i.e. ensuring the ClerkState is updated first)Install with pip:
pip install reflex-clerk-api
Or with a package manager (uv/poetry):
uv add reflex-clerk-api
import reflex_clerk_api as clerk
The demos below are using a development Clerk API key, so you can try out everything with fake credentials.
To simply log in, you can use the email/password combination.
[email protected]
test-clerk-password
Or if you want test signing up, you can use any email with +clerk_test
appended to it. E.g., [email protected]
.
Use any password you like, and the verification code will be 424242
.
More info on test credentials can be found in the Clerk documentation.
State variables and methods available on the `ClerkState` object.
State variables and methods available on the `ClerkState` object.
Demo of clerk_loaded
, clerk_loading
, and signed_in
, signed_out
components.
Demo of clerk_loaded
, clerk_loading
, and signed_in
, signed_out
components.
Wrap on_load
events with clerk.on_load(...) to ensure the ClerkState is updated before events run.
Wrap on_load
events with clerk.on_load(...) to ensure the ClerkState is updated before events run.
You can register a method to be called when the user logs in or out.
You can register a method to be called when the user logs in or out.
To conveniently use basic information within the frontend, you can use the `clerk.ClerkUser` state.
To conveniently use basic information within the frontend, you can use the `clerk.ClerkUser` state.
Some basic sign-in and sign-up pages are implemented for easy use. You can also create your own.
Some basic sign-in and sign-up pages are implemented for easy use. You can also create your own.
Users can manage their profile via the Clerk interface.
Users can manage their profile via the Clerk interface.
Built with Reflex