1.0.1 • Published 1 year ago

jd-password-generator v1.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

This is the new password generator.

Here are the simple steps to use the password generator.

  • Install package from npm.
npm i jd-password-generator
  • Use the code snippet given below.
import {generatePassword} from "jd-password-generator";

// here 20 is the length of the password or you can give your own length.
const passwordString = generatePassword(20);

console.log("Generating password",passwordString);