package
module
Version:
v0.0.0-...-a99e56a
Opens a new window with list of versions in this module.
Published: Jan 10, 2020
License: MIT
Opens a new window with license information.
Imports: 23
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
react-native-ipfs
Getting started
$ npm install react-native-ipfs --save
Mostly automatic installation
$ react-native link react-native-ipfs
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜ Add Files to [your project's name]
- Go to
node_modules
➜ react-native-ipfs
and add RNIpfs.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNIpfs.a
to your project's Build Phases
➜ Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNIpfsPackage;
to the imports at the top of the file
- Add
new RNIpfsPackage()
to the list returned by the getPackages()
method
- Append the following lines to
android/settings.gradle
:
include ':react-native-ipfs'
project(':react-native-ipfs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-ipfs/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:
compile project(':react-native-ipfs')
Windows
Read it! :D
- In Visual Studio add the
RNIpfs.sln
in node_modules/react-native-ipfs/windows/RNIpfs.sln
folder to their solution, reference from their app.
- Open up your
MainPage.cs
app
- Add
using Testing.RNIpfs;
to the usings at the top of the file
- Add
new RNIpfsPackage()
to the List<IReactPackage>
returned by the Packages
method
Usage
import RNIpfs from 'react-native-ipfs';
// TODO: What to do with the module?
RNIpfs;
Documentation
¶
AddFromURL – adds a file from an url
GetCoreAPI – returns the ipfs node wrapped with the core API interface
GetNode – gets current node in memory
HasFile – checks if ipfs has the specific file
HasNode – checks if we already have a node on memory
func StartNode(repoPath string)
StartNode – gets and starts a node in case it wasnt started yet
Source Files
¶
Click to show internal directories.
Click to hide internal directories.