WebAssembly powered random TypedArray generation for Deno, written in Rust.
deno cache -r https://raw.githubusercontent.com/hazae41/denorand/master/mod.ts
import * as rand from "https://raw.githubusercontent.com/hazae41/denorand/master/mod.ts"
// Generate a random Uint8Array[16]
const bytes = rand.u8(16);
// or u16, u32, u64, i8, i16, i32, i64
console.log(bytes)
deno cache -r https://raw.githubusercontent.com/hazae41/denorand/master/test.ts
deno run --allow-net https://raw.githubusercontent.com/hazae41/denorand/master/test.ts
-
Install wasm-pack
cargo install wasm-pack
-
Build
wasm-pack build --target web --release