@chainsafe/files-cli
v0.0.12
Published
A cli to download, decrypt and save locally any file uploaded to ChainSafe Files.
Downloads
44
Keywords
Readme
Files-cli
A cli tool to download and decrypt any file uploaded using ChainSafe Files
ChainSafe Files is a cloud platform that lets you upload files to IPFS and Filecoin. The files you upload are encrypted. This tool demonstrates the fact that given enough knowledge about your files, you can actually retrieve them without needing to log in to the ChainSafe Files platform. All you need is the content identifier of your file (cid) and the decryption key. When connected to Files user interface, the key is printed in the console of your browser.
How to use it
Currently, the only available command is get
.
Required arguments:
--cid
: IPFS content identifier of the file to get. This is available in the "info" menu for each file stored on Files.--output
: Full local path where the file will be saved once downloaded and decrypted, for example./my-image.jpg
--key
: Decryption key from ChainSafe Files. This is available in the "info" menu from each file stored on Files.
Optionnal arguments:
--gateway
: IPFS gateway to get the file from. Default: "https://ipfs.io/ipfs/"
Running it using npx
# Make sure it works and prints the help
npx @chainsafe/files-cli --help
# Use the "get" command with the cid and key you want
npx @chainsafe/files-cli get --cid QmfVd...ZAk --output "./my-image.jpg" --key UUc...td8=
Installing it globally with yarn
# Install the binary
yarn global add @chainsafe/files-cli
# Make sure it works and prints the help
files-cli --help
Installing it globally with npm
# Install the binary
npm install -g @chainsafe/files-cli
# Make sure it works and prints the help
files-cli --help
How to build it from the sources
We're using yarn here but it works with npm as well.
git clone https://github.com/ChainSafe/files-cli.git
cd files-cli
yarn build
# run the command starting with node lib/index.js e.g
node lib/index.js --version
node lib/index.js --help
node lib/index.js get --cid QmfVd...ZAk --output "./my-image.jpg" --key UUc...td8=
Type Documentation
See https://chainsafe.github.io/files-cli
Development
# clone this repository then
cd files-cli
yarn build:lib:watch