Just enough code to calculate the IPFS hash for some data
Calculate the IPFS hash for some data without having to install or run an IPFS node. Try it out with npx:
npx ipfs-only-hash <path to file>
npm i ipfs-only-hashFrom the command line
ipfs-only-hash <file>
# or pipe in
echo "hello world" | ipfs-only-hashAs a library
const Hash = require('ipfs-only-hash')
const data = 'hello world!'
const hash = await Hash.of(data)
console.log(hash) // QmTp2hEo8eXRp6wg7jXv1BLCMh5a4F3B7buAUZNZUu772jconst Hash = require('ipfs-only-hash')Calculate the hash for the provided input.
input(string|Uint8Array|AsyncIterable<Uint8Array>): The input bytes to calculate the IPFS hash for. Note that Node.js readable streams are async iterable!options(Object): Optional options passed directly to theipfs-unixfs-importermodule. See the API docs for possible values.
Feel free to dive in! Open an issue or submit PRs.
MIT © Alan Shaw