You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our client-side components use pyodide to execute ReactPy. However, Pyodide unfortunately has a pretty slow boot-up time.
Proposed Actions
Try using MicroPython to render ReactPy instead. Because MicroPython does not support installing packages from PyPi, this may involve creating our own system for manually fetching wheels, storing them locally, and then serving them.
Rather than this feature being a completely separate executor, it's likely that we will build it into the the existing ReactPyCsr executor via an ReactPyCsr(interpreter = "micropython") flag.
The text was updated successfully, but these errors were encountered:
Current Situation
Currently, our client-side components use
pyodide
to execute ReactPy. However, Pyodide unfortunately has a pretty slow boot-up time.Proposed Actions
Try using MicroPython to render ReactPy instead. Because MicroPython does not support installing packages from PyPi, this may involve creating our own system for manually fetching wheels, storing them locally, and then serving them.
There are some instructions on MicroPython's docs on how to build compatible apps, and a bit more detail on the
micropython-lib
docs.Rather than this feature being a completely separate executor, it's likely that we will build it into the the existing
ReactPyCsr
executor via anReactPyCsr(interpreter = "micropython")
flag.The text was updated successfully, but these errors were encountered: