
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@functionland/rn-fula
Advanced tools
<!-- *** Thanks for checking out the Best-README-Template. If you have a suggestion *** that would make this better, please fork the repo and create a pull request *** or simply open an issue with the tag "enhancement". *** Don't forg
The Fula 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 fula 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-fula --save
or using CDN
<script src="https://cdn.jsdelivr.net/npm/@functionland/rn-fula@0.2.2/dist/index.js"></script>
fula client will be
// import provider
import Fula, {FulaContext} from '@functionland/rn-fula';
import React, {useContext} from 'react'
import {View} from 'react-native'
// add Fula Provider
const TopLevelComponent = (props) => {
return (
<View>
<Fula>
<App/>
</Fula>
</View>
)
}
// Use rn Fula
const App = (props) => {
fula = useContext(FulaContext)
async function connect() {
await fula.start()
await fula.connect(serverId)
}
const onSend = async (e: any) => {
let fileId = await fula.sendFile(image.uri)
console.log(fileId)
}
const onReceiveFile = async (e: any) => {
const file = await fula.receiveFile(fileId)
console.log(await blobToBase64(file))
}
const onReceiveMeta = async (e: any) => {
const meta =await fula.receiveMeta(fileId)
console.log(meta)
}
}
AppRegistry.registerComponent('WhateverName', () => TopLevelComponent)
For more examples, please refer to the Examples
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!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)See LICENSE for more information.
FAQs
<!-- *** Thanks for checking out the Best-README-Template. If you have a suggestion *** that would make this better, please fork the repo and create a pull request *** or simply open an issue with the tag "enhancement". *** Don't forg
We found that @functionland/rn-fula demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.