![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-go-ipfs
Advanced tools
Embeded go-ipfs instance exposed through a js class with asynchronous methods. Alpha software, use at your own risk!
Embeded go-ipfs instance exposed through a js class with asynchronous methods. Alpha software, use at your own risk.
$ npm install react-native-go-ipfs --save
You need to add:
maven { url "${rootDir.getPath()}/../node_modules/react-native-go-ipfs/android/local_repo" }
to your react native app's android/build.gradle
allprojects.repositories
like shown below
allprojects {
repositories {
maven { url "${rootDir.getPath()}/../node_modules/react-native-go-ipfs/android/local_repo" }
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
This shouldn't be needed as soon as we publish the maven packages.
You need to add
pod 'GomobileIPFS', :path => '../node_modules/react-native-go-ipfs/ios/GomobileIPFS'
to your app's ios/Podfile
like shown below
target 'app' do
# Pods for app
pod 'GomobileIPFS', :path => '../node_modules/react-native-go-ipfs/ios/GomobileIPFS'
import IPFS from "react-native-go-ipfs";
const ipfs = new IPFS();
await ipfs.start();
const response = await ipfs.command("/id");
console.log(response);
await ipfs.stop();
FAQs
Embeded go-ipfs instance exposed through a js class with asynchronous methods. Alpha software, use at your own risk!
The npm package react-native-go-ipfs receives a total of 10 weekly downloads. As such, react-native-go-ipfs popularity was classified as not popular.
We found that react-native-go-ipfs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.