{"library":"blake3-wasm","type":"library","category":null,"description":"The `blake3-wasm` package provides high-performance WebAssembly bindings for the BLAKE3 cryptographic hash function, enabling efficient hashing operations in JavaScript environments, including Node.js (>=16) and modern browsers. BLAKE3 is renowned for its speed, security, and parallel processing capabilities, making it a robust choice for various applications. This package specifically wraps the BLAKE3 WebAssembly module, offering a lean implementation focused solely on WASM performance rather than hybrid native bindings. The current stable version, 3.0.0, marks a significant shift to an ES Modules-only API and requires explicit asynchronous initialization. While the major version hasn't seen frequent updates since its release (October 2022), the underlying `connor4312/blake3` project, from which this package is derived, appears to be actively maintained, suggesting a stable, feature-complete API for `blake3-wasm`.","language":"javascript","status":"active","version":"3.0.0","tags":["javascript","blake3","webassembly","wasm","hash","typescript"],"last_verified":"Wed May 27","install":[{"cmd":"npm install blake3-wasm","imports":["import { init, hash } from 'blake3-wasm';\nawait init();","import { init, hash } from 'blake3-wasm';\n// ... after await init() ...\nconst data = new Uint8Array([1, 2, 3]);\nconst result = hash(data);","import { init, createHasher } from 'blake3-wasm';\n// ... after await init() ...\nconst hasher = createHasher();\nhasher.update(new TextEncoder().encode('hello'));\nhasher.update(new TextEncoder().encode('world'));\nconst finalHash = hasher.digest();"]},{"cmd":"yarn add blake3-wasm","imports":[]},{"cmd":"pnpm add blake3-wasm","imports":[]}],"homepage":null,"github":"https://github.com/connor4312/blake3","docs":null,"changelog":null,"pypi":null,"npm":"https://www.npmjs.com/package/blake3-wasm","openapi_spec":null,"status_page":null,"smithery":null,"compatibility":{"summary":{"python_range":"18–22","success_rate":0,"avg_install_s":null,"avg_import_s":null,"wheel_type":null},"url":"https://checklist.day/v1/registry/blake3-wasm/compatibility"}}