Package Exports
- ipfsd-ctl
- ipfsd-ctl/src/daemon-node.js
- ipfsd-ctl/src/exec.js
- ipfsd-ctl/src/remote-node/routes.js
- ipfsd-ctl/src/utils
- ipfsd-ctl/src/utils/create-repo-browser.js
- ipfsd-ctl/src/utils/create-repo-nodejs.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ipfsd-ctl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ipfsd-ctl
Control an IPFS daemon using JavaScript in Node.js or in the Browser.
+-----+
| H |
| T |
+-----------------------------+ | T |
| Node.js | +-----------------------+ | P | +-----------------------------+
| | | | | | | BROWSER |
| +-----------------------+ | | IPFS Daemon | | S | | |
| | Local Daemon Ctrl | | | | | E | | +----------------------+ |
| | +------- -------- R -----|---- Remote Daemon Ctrl | |
| +-----------------------+ | +-----|-----------|-----+ | V | | | | |
| | | | | E | | +----------------------+ |
| +-----------------------+ | | | | R | | |
| | IPFS API | | | | +-----+ | +----------------------+ |
| | -------------+ | | | IPFS API | |
| +-----------------------+ | +-----------------------|---- | |
| | | +----------------------+ |
+-----------------------------+ +-----------------------------+Table of Contents
Install
Install:
npm install --save ipfsd-ctlUsage
IPFS daemons are already easy to start and stop, but this module is here to do it from JavaScript itself.
Spawn an IPFS daemon from Node.js
// Start a disposable node, and get access to the api
// print the node id, and stop the temporary daemon
const DaemonFactory = require('ipfsd-ctl')
const df = DaemonFactory.create()
df.spawn(function (err, ipfsd) {
if (err) { throw err }
ipfsd.api.id(function (err, id) {
if (err) { throw err }
console.log(id)
ipfsd.stop()
})
})Spawn an IPFS daemon from the Browser using the provided remote endpoint
// Start a remote disposable node, and get access to the api
// print the node id, and stop the temporary daemon
const DaemonFactory = require('ipfsd-ctl')
const port = 9999
const server = DaemonFactory.createServer(port)
const df = DaemonFactory.create({ remote: true, port: port })
server.start((err) => {
if (err) { throw err }
df.spawn((err, ipfsd) => {
if (err) { throw err }
ipfsd.api.id(function (err, id) {
if (err) { throw err }
console.log(id)
ipfsd.stop(server.stop)
})
})
})Disposable vs non Disposable nodes
ipfsd-ctl can create two types of node controllers, disposable and non-disposable. A disposable node will be created on a temporary repo which will be optionally initialized and started (the default), as well cleaned up on process exit. A non-disposable node on the other hand, requires the user to initialize and start the node, as well as stop and cleanup after wards. Additionally, a non-disposable will allow you to pass a custom repo using the repoPath option, if the repoPath is not defined, it will use the default repo for the node type ($HOME/.ipfs or $HOME/.jsipfs). The repoPath parameter is ignored for disposable nodes, as there is a risk of deleting a live repo.
IPFS executables
ipfsd-ctl no longer installs go-ipfs nor js-ipfs dependencies, instead it expects them to be provided by the parent project. In order to be able to use both go and js daemons, please make sure that your project includes these two npm packages as dependencies.
ipfs- the js-ipfs implementationgo-ipfs-dep- the packaged go-ipfs implementation
API
Daemon Factory Class
DaemonFactory - const df = DaemonFactory.create([options])
DaemonFactory.create([options]) returns an object that will expose the df.spawn method
options- an optional object with the following propertiesremotebool - indicates if the factory should spawn local or remote nodes. By default, local nodes are spawned in Node.js and remote nodes are spawned in Browser environments.portnumber - the port number to use for the remote factory. It should match the port on whichDaemonFactory.serverwas started. Defaults to 9999.type- the daemon type to create with this factory. See the section bellow for the supported typesexec- path to the desired IPFS executable to spawn, otherwiseipfsd-ctlwill try to locate the correct one based on thetype. In the case ofproctype, exec is required and expects an IPFS coderef.
ipfsd-ctl allows spawning different IPFS implementations, such as:
go- callingDaemonFactory.create({type: 'go'})will spawn ago-ipfsdaemon.js- callingDaemonFactory.create({type: 'js'})will spawn ajs-ipfsdaemon.proc- callingDaemonFactory.create({type: 'proc', exec: require('ipfs') })will spawn anin process js-ipfs nodeusing the provided code reference that implements the core IPFS API. Note that,execoption todf.spawn()is required iftype: 'proc'is used.
DaemonFactory endpoint for remote spawning - const server = DaemonFactory.createServer([options]) `
DaemonFactory.createServer create an instance of the bundled REST API used by the remote controller.
- exposes
startandstopmethods to start and stop the http server endpoint.
Spawn a new daemon with df.spawn
Spawn either a js-ipfs or go-ipfs daemon
df.spawn([options], callback)
options is an optional object the following properties:
initbool (default true) - should the node be initializedstartbool (default true) - should the node be startedrepoPathstring - the repository path to use for this node, ignored if node is disposabledisposablebool (default false) - a new repo is created and initialized for each invocation, as well as cleaned up automatically once the process exitsargs- array of cmd line arguments to be passed to ipfs daemonconfig- ipfs configuration options
callback - is a function with the signature function (err, ipfsd) where:
err- is the error set if spawning the node is unsuccessfulipfsd- is the daemon controller instance:api- a property ofipfsd, an instance of ipfs-api attached to the newly created ipfs node
IPFS Daemon Controller (ipfsd)
The IPFS daemon controller (ipfsd) allows you to interact with the spawned IPFS daemon.
ipfsd.apiAddr (getter)
Get the address (multiaddr) of connected IPFS API. Returns a multiaddr
ipfsd.gatewayAddr (getter)
Get the address (multiaddr) of connected IPFS HTTP Gateway. Returns a multiaddr.
ipfsd.repoPath (getter)
Get the current repo path. Returns string.
ipfsd.started (getter)
Is the node started. Returns a boolean.
init([initOpts], callback)
Initialize a repo.
initOpts (optional) is an object with the following properties:
keysize(default 2048) - The bit size of the identity key.directory(default IPFS_PATH if defined, or ~/.ipfs for go-ipfs and ~/.jsipfs for js-ipfs) - The location of the repo.
callback is a function with the signature function (Error, ipfsd) where err is an Error in case something goes wrong and ipfsd is the daemon controller instance.
ipfsd.cleanup(callback)
Delete the repo that was being used. If the node was marked as disposable this will be called automatically when the process is exited.
callback is a function with the signature function(err).
ipfsd.start(flags, callback)
Start the daemon.
flags - Flags array to be passed to the ipfs daemon command.
callback is a function with the signature function(err, ipfsApi) that receives an instance of ipfs-api on success or an instance of Error on failure
ipfsd.stop([callback])
Stop the daemon.
callback is a function with the signature function(err) callback - function that receives an instance of Error on failure
ipfsd.killProcess([callback])
Kill the ipfs daemon process.
First a SIGTERM is sent, after 10.5 seconds SIGKILL is sent if the process hasn't exited yet.
callback is a function with the signature function() called once the process is killed
ipfsd.pid(callback)
Get the pid of the ipfs daemon process. Returns the pid number
callback is a function with the signature function(err, pid) that receives the pid of the running daemon or an Error instance on failure
ipfsd.getConfig([key], callback)
Returns the output of an ipfs config command. If no key is passed, the whole config is returned as an object.
key (optional) - A specific config to retrieve.
callback is a function with the signature function(err, (Object|string)) that receives an object or string on success or an Error instance on failure
ipfsd.setConfig(key, value, callback)
Set a config value.
key - the key of the config entry to change/set
value - the config value to change/set
callback is a function with the signature function(err) callback - function that receives an Error instance on failure
ipfsd.version(callback)
Get the version of ipfs
callback is a function with the signature function(err, version)
IPFS Client (ipfsd.api)
An instance of ipfs-api that is used to interact with the daemon.
This instance is returned for each successfully started IPFS daemon, when either df.spawn({start: true}) (the default) is called, or ipfsd.start() is invoked in the case of nodes that were spawned with df.spawn({start: false}).
Packaging
ipfsd-ctl can be packaged in Electron applications, but the ipfs binary has to be excluded from asar (Electron Archives).
read more about unpack files from asar.
ipfsd-ctl will try to detect if used from within an app.asar archive and tries to resolve ipfs from app.asar.unpacked. The ipfs binary is part of the go-ipfs-dep module.
electron-packager ./ --asar.unpackDir=node_modules/go-ipfs-depContribute
Feel free to join in. All welcome. Open an issue!
This repository falls under the IPFS Code of Conduct.
