{"id":29287885,"url":"https://github.com/zerowithzero/zerowillreborn-secure-password-generator","last_synced_at":"2026-01-20T16:28:45.919Z","repository":{"id":303013227,"uuid":"1014138152","full_name":"zerowithzero/zerowillreborn-secure-password-generator","owner":"zerowithzero","description":"CLI + API to generate secure passwords with options for length, symbols, and readability","archived":false,"fork":false,"pushed_at":"2025-07-05T06:40:48.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-01T23:34:12.159Z","etag":null,"topics":["cli","cli-password-generator","node-package","npm","npm-package","npmjs","password-generator","secure","secure-password-generator","zerowillreborn"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@zerowillreborn/secure-password-generator","language":"JavaScript","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/zerowithzero.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-05T06:00:22.000Z","updated_at":"2025-07-05T06:10:07.000Z","dependencies_parsed_at":"2025-07-05T07:18:11.142Z","dependency_job_id":"f2d558f6-8f67-4aca-8554-904fcdfc6e67","html_url":"https://github.com/zerowithzero/zerowillreborn-secure-password-generator","commit_stats":null,"previous_names":["zerowithzero/zerowillreborn-secure-password-generator"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zerowithzero/zerowillreborn-secure-password-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerowithzero%2Fzerowillreborn-secure-password-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerowithzero%2Fzerowillreborn-secure-password-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerowithzero%2Fzerowillreborn-secure-password-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerowithzero%2Fzerowillreborn-secure-password-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zerowithzero","download_url":"https://codeload.github.com/zerowithzero/zerowillreborn-secure-password-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerowithzero%2Fzerowillreborn-secure-password-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607127,"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":["cli","cli-password-generator","node-package","npm","npm-package","npmjs","password-generator","secure","secure-password-generator","zerowillreborn"],"created_at":"2025-07-06T02:07:22.371Z","updated_at":"2026-01-20T16:28:45.903Z","avatar_url":"https://github.com/zerowithzero.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔐 secure-password-generator\n\nThe **simplest and smartest** CLI + API tool to generate secure passwords — instantly.  \nBuilt for developers who care about **security, usability**, and **speed**.\n\n---\n\n## 🚀 Features\n\n- ✅ **Super Secure** — Uses Node.js `crypto.randomInt()` (cryptographically strong)\n- 🧪 **CLI + API Support** — Generate from terminal or within your code\n- 🧠 **Readable Mode** — Excludes confusing characters like `O0Il1|`\n- 🎛 **Customizable** — Set length, toggle symbols, and readability\n- 📋 **Clipboard Support** — Auto-copy password in CLI\n- 🌈 **Modern CLI UX** — Beautiful banner, colors, intuitive design\n\n---\n\n## 🧠 Why This Package?\n**Unlike alternatives like generate-password, this tool:**\n- ✅ Provides both CLI and API in one clean install\n- ✅ Uses secure randomness (no Math.random)\n- ✅ Offers a readable mode for user-friendly onboarding\n- ✅ Copies passwords to clipboard automatically\n- ✅ Has zero config, beautiful UX, and instant usage\n\n---\n\n## 📦 Installation\n\n### 📁 For CLI Use (Global)\n\n```bash\nnpm install -g @zerowillreborn/secure-password-generator\n```\n### Now you can use:\n```bash\nsecure-pass --help\nExample:\nsecure-pass --length 16 --symbols --readable\n```\n\n### 📁 For API Use in Projects\n```bash\nnpm install @zerowillreborn/secure-password-generator\n```\n### 🧑‍💻 API Usage\n```bash\nimport generatePassword from '@zerowillreborn/secure-password-generator';\n\nconst password = generatePassword({\n  length: 16,\n  symbols: true,\n  readable: true\n});\n\nconsole.log(password); // 'abc$XyZ09LMn!pqR'\n```\n\u003e ✅ Fully ESM-compatible, no external dependencies\n\n## 📚 API Reference\n\n```bash\ngeneratePassword(options?: {\n  length?: number;      // Default: 12\n  symbols?: boolean;    // Include special characters, default: true\n  readable?: boolean;   // Remove ambiguous characters, default: false\n}): string\n```\n\n## 🔐 How It Works\n**This package uses Node's native crypto.randomInt() for true secure random number generation. Unlike other tools, we never use Math.random().**\n\n# 👨‍💻 Author\n**Achal Chaudhary**\n**achal.psolver@gmail.com**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerowithzero%2Fzerowillreborn-secure-password-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerowithzero%2Fzerowillreborn-secure-password-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerowithzero%2Fzerowillreborn-secure-password-generator/lists"}