docs/plugins.md
Since 0.4.11 Kubo has an experimental plugin system that allows augmenting the daemons functionality without recompiling.
When an IPFS node is started, it will load plugins from the $IPFS_PATH/plugins
directory (by default ~/.ipfs/plugins).
Table of Contents
Plugins can implement one or more plugin types, defined in the plugin package.
IPLD plugins add support for additional formats to ipfs dag and other IPLD
related commands.
Datastore plugins add support for additional datastore backends.
(experimental)
Tracer plugins allow injecting an opentracing backend into Kubo.
Daemon plugins are started when the Kubo daemon is started and are given an instance of the CoreAPI. This should make it possible to build an ipfs-based application without IPC and without forking Kubo.
Note: We eventually plan to make Kubo usable as a library. However, this plugin type is likely the best interim solution.
Fx plugins let you customize the fx dependency graph and configuration,
by customizing thefx.Options that are passed to fx when the Kubo node is initialized.
For example, you can override an interface such as exchange.Interface
or pin.Pinner with a custom implementation by appending an option like
fx.Decorate(func() exchange.Interface { return customExchange }).
Fx supports some advanced customization. Simple interface replacements like above are unlikely to break in the future,
but the more invasive your changes, the more likely they are to break between releases. Kubo cannot guarantee backwards
compatibility for fx customizations.
Fx options are applied across every execution of the ipfs binary, including:
So if you plug in a blockservice that disallows non-allowlisted CIDs, then this may break migrations that fetch migration code over the IPFS network.
(never stable)
Internal plugins are like daemon plugins except that they can access, replace, and modify all internal state. Use this plugin type to extend Kubo in arbitrary ways. However, be aware that your plugin will likely break every time Kubo updated.
Plugins can be configured in the Plugins section of the config file. Here,
plugins can be:
Config field.Disabled field.Example:
{
// ...
"Plugins": {
"Plugins": {
// plugin named "plugin-foo"
"plugin-foo": {
"Config": { /* arbitrary json */ }
},
// plugin named "plugin-bar"
"plugin-bar": {
"Disabled": true // "plugin-bar" will not be loaded
}
}
}
}
| Name | Type | Preloaded | Description |
|---|---|---|---|
| git | IPLD | x | An IPLD format for git objects. |
| badgerds | Datastore | x | A high performance but experimental datastore. |
| flatfs | Datastore | x | A stable filesystem-based datastore. |
| levelds | Datastore | x | A stable, flexible datastore backend. |
| jaeger | Tracing | An opentracing backend. | |
| telemetry | Telemetry | x | Collects anonymized usage data for Kubo development. |
Kubo supports two types of plugins: External and Preloaded.
$IPFS_PATH/plugins/ (usually
~/.ipfs/plugins/).The advantage of an external plugin is that it can be built, packaged, and installed independently of Kubo. Unfortunately, this method is only supported on Linux and MacOS at the moment. Users of other operating systems should follow the instructions for preloaded plugins.
To build plugins included in plugin/plugins, run:
kubo$ make build_plugins
kubo$ ls plugin/plugins/*.so
To install, copy desired plugins to $IPFS_PATH/plugins. For example:
kubo$ mkdir -p ~/.ipfs/plugins/
kubo$ cp plugin/plugins/git.so ~/.ipfs/plugins/
kubo$ chmod +x ~/.ipfs/plugins/git.so # ensure plugin is executable
Finally, restart daemon if it is running.
To build out-of-tree plugins, use the plugin's Makefile if provided. Otherwise, you can manually build the plugin by running:
myplugin$ go build -buildmode=plugin -o myplugin.so myplugin.go
Finally, as with in-tree plugins:
$IPFS_PATH/plugins.chmod +x $IPFS_PATH/plugins/myplugin.so).The advantages of preloaded plugins are:
To preload a Kubo plugin:
plugin/loader/preload_listkubo$ make build
You can also preload an in-tree but disabled-by-default plugin by adding it to the IPFS_PLUGINS variable. For example, to enable plugins foo, bar, and baz:
kubo$ make build IPFS_PLUGINS="foo bar baz"
To create your own out-of-tree plugin, use the example plugin as a starting point. When you're ready, submit a PR adding it to the list of available plugins.