Gathering detailed insights and metrics for @multiformats/murmur3
Gathering detailed insights and metrics for @multiformats/murmur3
Gathering detailed insights and metrics for @multiformats/murmur3
Gathering detailed insights and metrics for @multiformats/murmur3
Multiformats hash functions for MurmurHash3
npm install @multiformats/murmur3
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
3 Stars
91 Commits
2 Forks
13 Watchers
4 Branches
34 Contributors
Updated on Mar 28, 2025
Latest Version
2.1.8
Package Id
@multiformats/murmur3@2.1.8
Unpacked Size
25.67 kB
Size
9.22 kB
File Count
7
NPM Version
9.9.2
Node Version
20.10.0
Published on
Jan 01, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
2
Multiformats Murmur3 implementations
1$ npm i @multiformats/murmur3
MultihashHashers
s are exported from this library, they produce MultihashDigest
s. Details about these can be found in the multiformats multihash interface definitions.
1import * as Block from 'multiformats/block' 2import * as codec from '@ipld/dag-cbor' 3import { murmur3128 as hasher } from '@multiformats/murmur3' 4 5async function run () { 6 const value = { hello: 'world' } 7 const block = await Block.encode({ value, hasher, codec }) 8 console.log(block.cid) 9 // -> CID(bafyseebn7ksk6khsn4an2lzmae6wm4qk) 10} 11 12run().catch(console.error)
The @multiformats/murmur3
package exports murmur332
and murmur3128
MultihashHasher
s. The Multicodecs table defines these multihashes.
The murmur3-32
, multicodec code 0x23
, may be imported as:
1import { murmur332 } from '@multiformats/murmur3'
The murmur3-128
, multicodec code 0x22
, may be imported as:
1import { murmur3128 } from '@multiformats/murmur3'
The murmur3-x64-64
(which is first 64-bits of murmur3-128
used in UnixFS directory sharding), multicodec code 0x22
, may be imported as:
1import { murmur364 } from '@multiformats/murmur3'
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 10/21 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More