Files
pear-docs/examples/bare-on-mobile.md
Sean Zellmer 02086fd150 Change RPC to IPC language in mobile bare docs (#159)
`bare-kit` API switched to just an IPC abstraction.
2024-12-23 10:00:49 +01:00

1.2 KiB

Bare on Mobile

Bare can be embedded into mobile applications to serve as the "Pear-end" where the peer-to-peer code of the application is run.

To get started with embedding Bare into an Expo mobile application use the Bare on Expo example as reference. This example integrates Bare as an isolated thread, called a worklet1 , via react-native-bare-kit. All code passed when starting the worklet will run in the Bare runtime and can be communicated with via an inter-process communication (IPC) stream.

For deeper integration with a mobile application, the following examples can be used as references:

The Bare JavaScript runtime runs equally well on both mobile and desktop applications.

For further reference on using Bare, please refer to GitHub (Bare).


  1. This term was chosen to avoid ambiguity with worker threads as implemented by https://github.com/holepunchto/bare-worker. ↩︎