Explore the IPLD directed acyclic graph with your keyboard
Ensure you have at least:
- node@8
- go-ipfs@0.4 or js-ipfs@0.31
Install the explorer:
npm install --global ipld-explorer-cli
Start your Go/JS IPFS daemon:
ipfs daemon
# or
jsipfs daemon
$ ipld-explorer
Welcome to the IPLD explorer REPL!
Type "help" then <Enter> for a list of commands
? >
If you use JS-IPFS, make sure you set the apiAddr
accordingly:
? > config set apiAddr /ip4/127.0.0.1/tcp/5002
Change DAG. Changes the current working DAG node to the specified path. If the path is starts with /ipfs
or is a CID then change to that path otherwise path is taken to be relative to the current working DAG path.
Print working DAG. Prints the path of the current working DAG.
Walk down the provided path and print the object found there. path
defaults to CWD (current working DAG) if not specified.
List the entries at a path. path
defaults to CWD (current working DAG) if not specified.
Set a config value.
The following configuration keys are valid:
apiAddr
- The multiaddr of the IPFS node to use (default: /ip4/127.0.0.1/tcp/5001)
Get a config value or get all config if no key is provided.
Print the help information.
Prints the version of the ipld-explorer.
Quit the explorer.
Feel free to dive in! Open an issue or submit PRs.
MIT ยฉ Alan Shaw