Daninet / hash-wasm

Lightning fast hash functions using hand-tuned WebAssembly binaries
https://npmjs.com/package/hash-wasm
Other
881 stars 49 forks source link

Please release Deno versions #30

Closed yuhr closed 1 year ago

yuhr commented 3 years ago

https://deno.land/x/hashwasm@v4.1.0-deno2

The Deno version of this package is still 4.1.0. Could you release it along with the timing of npm releases?

Daninet commented 3 years ago

Yeah, I need to repair the build script which I had for Deno.

Until then you can import the latest version using ESM CDNs like Skypack.

import { md5 } from "https://cdn.skypack.dev/hash-wasm@4";

OR

import { md5 } from "https://esm.run/hash-wasm@4";
Daninet commented 1 year ago

Now it should be possible to import it directly: import {md5} from "npm:hash-wasm";