Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```