Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 1 day 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T01:00:12.000Z (almost 6 years ago)
- Last Synced: 2025-01-11T02:07:18.110Z (7 days 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
```