ipfs-only-hash

4.0.0 • Public • Published

ipfs-only-hash

Build Status dependencies Status JavaScript Style Guide

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>

Install

npm i ipfs-only-hash

Usage

From the command line

ipfs-only-hash <file>

# or pipe in 
echo "hello world" | ipfs-only-hash

As a library

const Hash = require('ipfs-only-hash')
const data = 'hello world!'
const hash = await Hash.of(data)
console.log(hash) // QmTp2hEo8eXRp6wg7jXv1BLCMh5a4F3B7buAUZNZUu772j

API

const Hash = require('ipfs-only-hash')

Hash.of(input, options?): Promise<string>

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 the ipfs-unixfs-importer module. See the API docs for possible values.

Contribute

Feel free to dive in! Open an issue or submit PRs.

License

MIT © Alan Shaw

Dependencies (2)

Dev Dependencies (6)

Package Sidebar

Install

npm i ipfs-only-hash

Weekly Downloads

7,142

Version

4.0.0

License

MIT

Unpacked Size

6.32 kB

Total Files

8

Last publish

Collaborators

  • alanshaw