# generate-strong-password **Repository Path**: mirrors_stevemao/generate-strong-password ## Basic Information - **Project Name**: generate-strong-password - **Description**: A module that does https://github.com/bermi/password-generator#example-with-custom-validation-rules, with isStrongEnough and customPassword exported - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```