The Borg library abstracts away the protocols and `libp2p` connection, instead exposes APIs similar to MongoDB for data persistence and S3 for file storage. this package bridge borg functionality to react native using webview.
Use Server with caution and know the risk's because we are at development stage and the identity and encryption is not available, so you become public node that can accessed from anywhere.
Install NPM package
npm install @functionland/rn-borg --save
or using CDN
<script src="https://cdn.jsdelivr.net/npm/@functionland/rn-borg@0.2.2/dist/index.js"></script>
borg client will be
// import provider
import Borg, {BorgContext} from '@functionland/rn-borg';
import React, {useContext} from 'react'
import {View} from 'react-native'
// add Borg Provider
const TopLevelComponent = (props) => {
return (
<View>
<Borg>
<App/>
</Borg>
</View>
)
}
// Use rn Borg
const App = (props) => {
borg = useContext(BorgContext)
async function connect() {
await borg.start()
await borg.connect(serverId)
}
const onSend = async (e: any) => {
let fileId = await borg.sendFile(image.uri)
console.log(fileId)
}
const onReceiveFile = async (e: any) => {
const file = await borg.receiveFile(fileId)
console.log(await blobToBase64(file))
}
const onReceiveMeta = async (e: any) => {
const meta =await borg.receiveMeta(fileId)
console.log(meta)
}
}
AppRegistry.registerComponent('WhateverName', () => TopLevelComponent)
For more examples, please refer to the Examples
- Protocols
- File
- Data
- AI
- Identity
- Encryption
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
See LICENSE
for more information.