This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
Implement the jsipfs ls
command #927
Closed
Description
Following: https://github.com/ipfs/js-ipfs/pull/925/files
We want to support the same command that go-ipfs supports: jsipfs ls
.
From go-ipfs:
» ipfs ls --help
USAGE
ipfs ls <ipfs-path>... - List directory contents for Unix filesystem objects.
SYNOPSIS
ipfs ls [--headers | -v] [--resolve-type=false] [--] <ipfs-path>...
ARGUMENTS
<ipfs-path>... - The path to the IPFS object(s) to list links from.
OPTIONS
-v, --headers bool - Print table headers (Hash, Size, Name). Default: false.
--resolve-type bool - Resolve linked objects to find out their types. Default: true.
DESCRIPTION
Displays the contents of an IPFS or IPNS object(s) at the given path, with
the following format:
<link base58 hash> <link size in bytes> <link name>
The JSON output contains type information.