random-password-async

1.0.3 • Public • Published

random-password-async

A simple async random password generator that uses /dev/urandom on Linux.

Install

npm install random-password-async  

Usage

const randomPassword = require('random-password-async');

const getPasswords = async () => {
    for (let i = 30; i < 50; i++) {
        const pwd = await randomPassword(i);
        console.log(pwd);
    }
}

getPasswords();

Readme

Keywords

Package Sidebar

Install

npm i random-password-async

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

3.39 kB

Total Files

6

Last publish

Collaborators

  • crazyquark