tatva-password-generator
v1.0.2
Published
The tatva-password-generator package is a simple and flexible tool for generating secure, random passwords. It allows you to customize the length and complexity of the passwords and includes options for including or excluding numbers, uppercase or special
Downloads
4
Readme
Tatva Password Generator
A simple and customizable password generator for generating secure and random passwords. This package allows you to create passwords with configurable options such as length, uppercase letters, numbers, and special characters.
Installation
To use this package, you need to install it via npm. You can add it to your project with the following command:
npm install tatva-password-generator
Usage
Here's how to use the generatePassword function in your Node.js project:
const generatePassword = require('tatva-password-generator');
// Generate a password of length 12 including uppercase, numbers, and special characters
const password = generatePassword(12, true, true, true);
console.log(password); // Output example: 'A1b@3C#dE4$'