https://github.com/stevemao/generate-strong-password
A module that does https://github.com/bermi/password-generator#example-with-custom-validation-rules, with isStrongEnough and customPassword exported
https://github.com/stevemao/generate-strong-password
browser crypto generator pass password random security
Last synced: 8 months ago
JSON representation
A module that does https://github.com/bermi/password-generator#example-with-custom-validation-rules, with isStrongEnough and customPassword exported
- Host: GitHub
- URL: https://github.com/stevemao/generate-strong-password
- Owner: stevemao
- Created: 2019-03-17T00:53:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T01:00:12.000Z (over 7 years ago)
- Last Synced: 2025-02-12T13:09:46.300Z (over 1 year ago)
- Topics: browser, crypto, generator, pass, password, random, security
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
A module that does https://github.com/bermi/password-generator#example-with-custom-validation-rules, with `isStrongEnough` and `customPassword` exported
Password:
* Must contain at least two numbers
* Must contain at least three uppercase letters
* Must contain at least three lowercase letters
* Must contain at least two special characters
* Must NOT contain sequences of two or more repeated characters
```js
const generateStrongPassword = require('generate-strong-password');
console.log(generateStrongPassword()); // => 2hP5v?1KKNx7_a-W
```