Generate a random password
npm install easy-password-gen> Generate a random password
- Usage
- Install
- Contribute
- License
``js
import generatePassword from 'easy-password-gen'
const pass1 = generatePassword({
lowercase: true,
length: 40
})
const pass2 = generatePassword({
uppercase: true,
numbers: false,
symbols: false
})
console.log(pass1)
console.log(pass2)
`
This project uses node and npm.
`sh`
$ npm install easy-password-gen
$ # OR
$ yarn add easy-password-gen
1. Fork it and create your feature branch: git checkout -b my-new-featuregit commit -am "Add some feature"
2. Commit your changes: git push origin my-new-feature`
3. Push to the branch:
4. Submit a pull request
MIT