A robust npm package for generating random passwords in JavaScript. This package ensures strong and secure passwords with customizable length and character sets.
To install our-qr-generator, you need to have Node.js installed on your system. Then, you can follow these steps :
- Navigate to the directory where you want to use the package.
- Initialize npm by running ( in your terminal ) :
npm init
- Install the package by running ( in your terminal ) :
npm install my-strong-password-generator
After installing the package, you can use it in your Node.js projects by requiring it.Write the below code under your index.js( or as your file name ) file.
const generateQR = require('my-strong-password-generator');
generateQR().catch(error => {
console.error('Error:', error.message);
});
Then run the below command ( in your terminal ) :
node index.js
When you run this code it prompts the user to enter the length of the desired password. It then generates a secure and robust password containing digits, lowercase and uppercase letters, and special symbols as the output.
This package is licensed under the Apache 2.0 License.