Skip to content

crazyquark/random-password-async

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published