{"id":34651558,"url":"https://github.com/tetherto/pearpass-utils-password-generator","last_synced_at":"2026-01-20T18:02:17.266Z","repository":{"id":329933010,"uuid":"1113288702","full_name":"tetherto/pearpass-utils-password-generator","owner":"tetherto","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-22T15:13:51.000Z","size":90,"stargazers_count":0,"open_issues_count":1,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T22:22:49.457Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tetherto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-09T19:15:44.000Z","updated_at":"2025-12-22T15:13:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tetherto/pearpass-utils-password-generator","commit_stats":null,"previous_names":["tetherto/pearpass-utils-password-generator"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tetherto/pearpass-utils-password-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fpearpass-utils-password-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fpearpass-utils-password-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fpearpass-utils-password-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fpearpass-utils-password-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tetherto","download_url":"https://codeload.github.com/tetherto/pearpass-utils-password-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tetherto%2Fpearpass-utils-password-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607964,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-12-24T17:56:46.228Z","updated_at":"2026-01-20T18:02:17.253Z","avatar_url":"https://github.com/tetherto.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pearpass-utils-password-generator\n\nAn utility package for generating secure passwords and passphrases.\n\n## Table of Contents\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Examples](#examples)\n- [Dependencies](#dependencies)\n- [Related Projects](#related-projects)\n\n## Features\n\n- Generate secure passwords with customizable options\n    - Configurable length\n    - Include/exclude special characters\n    - Include/exclude lowercase letters\n    - Include/exclude uppercase letters\n    - Include/exclude numbers\n- Generate memorable passphrases with configurable settings\n    - Adjustable word count\n    - Optional capitalization\n    - Optional number suffixes\n    - Optional symbol suffixes\n\n## Installation\n\n```bash\nnpm install pearpass-utils-password-generator\n```\n\n## Usage Examples\n```javascript\nimport { generatePassword, generatePassphrase } from 'pearpass-utils-password-generator';\n\n// Generate a password\nconst password = generatePassword(12, {\n    includeSpecialChars: true,\n    lowerCase: true,\n    upperCase: true,\n    numbers: true\n});\n\n// Generate a passphrase\nconst passphrase = generatePassphrase(true, true, true, 4);\n```\n\n### Password Generation\n```javascript\n// Generate a 16-character password with all character types\nconst strongPassword = generatePassword(16);\n\n// Generate a 12-character password without special characters\nconst simplePassword = generatePassword(12, { includeSpecialChars: false });\n\n// Generate a numeric PIN\nconst pin = generatePassword(6, {\n    includeSpecialChars: false,\n    lowerCase: false,\n    upperCase: false,\n    numbers: true\n});\n```\n\n### Passphrase Generation\n```javascript\n// Generate a 4-word passphrase with capitalization, symbols, and numbers\nconst complexPassphrase = generatePassphrase(true, true, true, 4);\n// Example: \"Guitar5$ Elephant3# Balloon7^ Dog2\u0026\"\n\n// Generate a simple 3-word passphrase\nconst simplePassphrase = generatePassphrase(false, false, false, 3);\n// Example: \"river camera piano\"\n```\n\n## Dependencies\n\nThis package has no production dependencies.\n\n## Related Projects\n\n- [pearpass-app-mobile](https://github.com/tetherto/pearpass-app-mobile) - A mobile app for PearPass, a password manager\n- [pearpass-app-desktop](https://github.com/tetherto/pearpass-app-desktop) - A desktop app for PearPass, a password\n- [pearpass-lib-ui-react-native-components](https://github.com/tetherto/pearpass-lib-ui-react-native-components) - A library of React Native UI components for PearPass\n- [pearpass-lib-ui-react-components](https://github.com/tetherto/pearpass-lib-ui-react-components) - A library of React UI components for PearPass\n- [tether-dev-docs](https://github.com/tetherto/tether-dev-docs) - Documentations and guides for developers\n\n## License\n\nThis project is licensed under the Apache License, Version 2.0. See the [LICENSE](./LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetherto%2Fpearpass-utils-password-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftetherto%2Fpearpass-utils-password-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetherto%2Fpearpass-utils-password-generator/lists"}