{"id":22860113,"url":"https://github.com/el-abdel/ngx-pwd-strength","last_synced_at":"2026-05-01T14:34:00.243Z","repository":{"id":39191828,"uuid":"416757748","full_name":"el-abdel/ngx-pwd-strength","owner":"el-abdel","description":"Angular Package, that measure password strength and indicate how secure is it","archived":false,"fork":false,"pushed_at":"2022-11-12T15:04:20.000Z","size":4931,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-08T10:56:21.462Z","etag":null,"topics":["angular","hacktoberfest","password-strength"],"latest_commit_sha":null,"homepage":"https://el-abdel.github.io/ngx-pwd-strength/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/el-abdel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-13T13:36:12.000Z","updated_at":"2022-10-05T08:17:38.000Z","dependencies_parsed_at":"2022-08-29T03:41:13.828Z","dependency_job_id":null,"html_url":"https://github.com/el-abdel/ngx-pwd-strength","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/el-abdel/ngx-pwd-strength","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-abdel%2Fngx-pwd-strength","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-abdel%2Fngx-pwd-strength/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-abdel%2Fngx-pwd-strength/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-abdel%2Fngx-pwd-strength/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/el-abdel","download_url":"https://codeload.github.com/el-abdel/ngx-pwd-strength/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/el-abdel%2Fngx-pwd-strength/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32501402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","hacktoberfest","password-strength"],"created_at":"2024-12-13T09:09:21.374Z","updated_at":"2026-05-01T14:34:00.219Z","avatar_url":"https://github.com/el-abdel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NgxPwdStrength\n\nEstimate the strength of the password using [zxcvbn](https://github.com/dropbox/zxcvbn), and display a visual password strength bar\nand feedback with suggestions and warning messages to help choose better passwords.\n\n[Live Demo](https://el-abdel.github.io/ngx-pwd-strength/)\n\n## Installation\n\nInstall [zxcvbn](https://github.com/dropbox/zxcvbn) (as the lib depends on) and `NgxPwdStrength` via npm:\n\n```sh\nnpm install zxcvbn3 ngx-pwd-strength --save\n```\n\n## Configuration\n\nImport NgxPwdStrength Module into the app module\n\n```ts\nimport {APP_INITIALIZER, NgModule} from '@angular/core';\nimport {NgxPwdStrengthModule, NgxPwdStrengthService} from \"ngx-pwd-strength\";\n\n// By default password strenght suggestions is enabled, use this config to disable it\nfunction initializePwdStrength(pwdStrength: NgxPwdStrengthService) {\n  return () =\u003e\n    pwdStrength.init({\n      enableFeedback: false\n    });\n}\n\n@NgModule({\n\n    imports: [\n      NgxPwdStrengthModule\n    ],\n       providers: [\n         {\n           provide: APP_INITIALIZER,\n           useFactory: initializePwdStrength,\n           multi: true,\n           deps: [NgxPwdStrengthService]\n         }\n       ]\n\n})\nexport class AppModule { }\n```\n\n## Usage\n\nAdd `ngxPwdStrength` directive to inputs of type = password\n\n```html\n\u003cinput type=\"password\" ngxPwdStrength name=\"password\" placeholder=\"Password\"\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fel-abdel%2Fngx-pwd-strength","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fel-abdel%2Fngx-pwd-strength","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fel-abdel%2Fngx-pwd-strength/lists"}