ipfake
v1.0.0
Published
Simulates IPFS for local testing purposes.
Readme
ipfake
Fake IPFS for local testing environment.
Install
$ npm install ipfakeUsage
From javascript
const ipfake = require("ipfake");
async function testIpfake() {
const hash = await ipfake.add("/rel/or/abs/path/to/file");
// returns a base58 hash of the absolute file path
const absolutePath = await ipfake.get(hash);
// returns an absolute path to the file, given its hash
}From command line
$ ipfake add /rel/or/abs/path/to/file
$ ipfake get hashOfAbsoluteFilePath