wasm-pass
v0.1.11
Published
A simple password generator
Downloads
4
Readme
wasm_pass
A password generator build with Rust and Web Assembly.
Install
npm install wasm-pass
Usage
const wasm_pass = import("wasm-pass");
wasm_pass.then(wasm_pass => {
/*
@param len number
@param no_symbols boolean
@param no_nums boolean
*/
const password = wasm_pass.generate(10, false, false);
console.log(password);
}).catch(err => console.error(err))
Run tests
cargo test -- --show-output
Author
collinsmuriuki
- Github: @collinsmuriuki
Tutorial
Wrote an article about how I built this project here
This project is MIT/APACHE licensed.