{"id":28372242,"url":"https://github.com/gabireze/password-generator-api","last_synced_at":"2026-04-12T05:33:08.076Z","repository":{"id":170806835,"uuid":"402494337","full_name":"gabireze/password-generator-api","owner":"gabireze","description":"A flexible and well-structured API for generating secure passwords, built with NestJS. It allows customization of character types, quantity, and output format (JSON, XML, YAML, CSV, text, or HTML).","archived":false,"fork":false,"pushed_at":"2025-05-20T13:43:17.000Z","size":548,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T13:16:30.632Z","etag":null,"topics":["api","csv","customizable","generator","html","json","just","nestjs","nestjs-backend","openapi","password","password-generator","secure","supertest","swagger","xml","yaml"],"latest_commit_sha":null,"homepage":"","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/gabireze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-09-02T16:44:56.000Z","updated_at":"2025-05-20T13:43:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"9115a5d7-3bb6-43e1-972f-f8fb01c15a9c","html_url":"https://github.com/gabireze/password-generator-api","commit_stats":null,"previous_names":["gabireze/random-password-generator-back-end","gabireze/password-generator-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gabireze/password-generator-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabireze%2Fpassword-generator-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabireze%2Fpassword-generator-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabireze%2Fpassword-generator-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabireze%2Fpassword-generator-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabireze","download_url":"https://codeload.github.com/gabireze/password-generator-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabireze%2Fpassword-generator-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260944654,"owners_count":23086852,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["api","csv","customizable","generator","html","json","just","nestjs","nestjs-backend","openapi","password","password-generator","secure","supertest","swagger","xml","yaml"],"created_at":"2025-05-29T13:18:43.656Z","updated_at":"2025-12-30T22:54:07.693Z","avatar_url":"https://github.com/gabireze.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔐 Password Generator API\n\n[![codecov](https://codecov.io/gh/gabireze/password-generator-api/branch/main/graph/badge.svg)](https://codecov.io/gh/gabireze/password-generator-api)\n\nA secure and flexible password generation API built with [NestJS](https://nestjs.com/). Supports multiple formats including JSON, text, XML, CSV, YAML, and HTML.\n\n## GitAds Sponsored\n[![Sponsored by GitAds](https://gitads.dev/v1/ad-serve?source=gabireze/password-generator-api@github)](https://gitads.dev/v1/ad-track?source=gabireze/password-generator-api@github)\n\n## 🚀 Features\n\n- Generate multiple random passwords with custom rules\n- Format output as:\n  - JSON\n  - Plain Text\n  - XML\n  - CSV\n  - YAML\n  - HTML\n- Exclude specific characters (e.g., `lIO0`)\n- Choose custom separators and quoting\n- Fully documented with Swagger (OpenAPI)\n- Includes unit and E2E tests\n\n## 📦 Installation\n\n```bash\nnpm install\n```\n\n## 🧪 Run in development\n\n```bash\nnpm run start:dev\n```\n\n## 🏗️ Build for production\n\n```bash\nnpm run build\nnpm run start:prod\n```\n\n## 📚 API Documentation\n\nAfter running the app, visit:\n\n```\nhttp://localhost:3000/api\n```\n\nThis loads the Swagger UI with all available endpoints.\n\n## 🔄 Example request\n\n### POST `/password/generate`\n\n```json\n{\n  \"length\": 12,\n  \"uppercase\": true,\n  \"lowercase\": true,\n  \"numbers\": true,\n  \"symbols\": true,\n  \"quantity\": 3,\n  \"format\": \"json\"\n}\n```\n\n#### Supported formats:  \n`json` | `text` | `xml` | `csv` | `yaml` | `html`\n\n## ✅ Run tests\n\n```bash\nnpm run test        # Unit tests\nnpm run test:e2e    # End-to-End tests\nnpm run test:cov    # Coverage report\n```\n\n## 🧹 Code quality\n\n```bash\nnpm run lint        # Check code style\nnpm run lint:fix    # Fix lint issues\nnpm run prettier:fix\n```\n\n## 🔧 Export OpenAPI docs (Swagger JSON)\n\n```bash\nnpm run export:swagger\n```\n\n## 📁 Project Structure\n\n```\nsrc/\n  ├── password/            # Password generator module\n  ├── app.controller.ts    # Healthcheck route\n  ├── swagger.ts           # Swagger export\n  └── main.ts              # Entry point\n```\n\n\u003c!-- GitAds-Verify: SR6LSW2ZG8BDVFYHQ1PJJ54GHH1DTAGZ --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabireze%2Fpassword-generator-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabireze%2Fpassword-generator-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabireze%2Fpassword-generator-api/lists"}