Added examples (#61)

This commit is contained in:
Subash SN
2024-02-21 10:14:37 +01:00
committed by GitHub
parent cbc6771450
commit 0858941ae1
4 changed files with 30 additions and 1 deletions

View File

@@ -81,6 +81,13 @@ Applications built using Pear.
- [Keet](./apps/keet.md): A peer-to-peer chat and video-conferencing application with end-to-end encryption.
### Examples
Collection of example applications that can be used as reference during development.
- [Bare on Mobile](./examples/bare-on-mobile.md)
- [React App using Pear](./examples/react-app-using-pear.md)
## Stability indexing
Throughout the documentation, indications of stability are provided. Some modules are well-established and used widely, making them highly unlikely to ever change. Other modules may be new, experimental, or known to have risks associated with their use.

View File

@@ -57,3 +57,8 @@
### Apps
* [Keet](apps/keet.md)
### Examples
* [Bare on Mobile](examples/bare-on-mobile.md)
* [React App using Pear](examples/react-app-using-pear.md)

View File

@@ -0,0 +1,10 @@
# Bare on Mobile
The Bare JavaScript runtime runs just as well on your phone as on your laptop.
Below example applications can be used as a reference for building mobile applications using Bare:
- [Bare Android](https://github.com/holepunchto/bare-android)
- [Bare iOS](https://github.com/holepunchto/bare-ios)
For further reference on using Bare, please refer to [GitHub (Bare)](https://github.com/holepunchto/bare)

View File

@@ -0,0 +1,7 @@
# Pear React Application
Below is an example of a Filesharing application built on the React framework using Pear.
- (Filesharing React App Example)[https://github.com/holepunchto/filesharing-react-app-example]
For further reference on using the Pear runtime, please refer to [Pear](../README.md#pear-runtime).