{"id":18550494,"url":"https://github.com/edtonatto/generate-random-secure-password-ts","last_synced_at":"2026-05-17T15:06:16.211Z","repository":{"id":148386974,"uuid":"618560378","full_name":"EdTonatto/generate-random-secure-password-ts","owner":"EdTonatto","description":"Library to generate a random password according to user's given options","archived":false,"fork":false,"pushed_at":"2023-07-04T14:41:02.000Z","size":132,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-15T10:09:42.318Z","etag":null,"topics":["generate","generator","library","password","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/generate-random-secure-password","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/EdTonatto.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}},"created_at":"2023-03-24T18:30:40.000Z","updated_at":"2023-04-03T04:35:06.000Z","dependencies_parsed_at":"2024-12-26T08:12:16.905Z","dependency_job_id":null,"html_url":"https://github.com/EdTonatto/generate-random-secure-password-ts","commit_stats":{"total_commits":42,"total_committers":1,"mean_commits":42.0,"dds":0.0,"last_synced_commit":"f67cb3d52a6bbfbc1d8b5ff4e571a4b74539c1ae"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdTonatto%2Fgenerate-random-secure-password-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdTonatto%2Fgenerate-random-secure-password-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdTonatto%2Fgenerate-random-secure-password-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdTonatto%2Fgenerate-random-secure-password-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EdTonatto","download_url":"https://codeload.github.com/EdTonatto/generate-random-secure-password-ts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254319720,"owners_count":22051075,"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":["generate","generator","library","password","typescript"],"created_at":"2024-11-06T21:04:56.991Z","updated_at":"2025-09-25T11:43:07.612Z","avatar_url":"https://github.com/EdTonatto.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.png\" width=\"140px\" /\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://badge.fury.io/js/generate-random-secure-password\"\u003e\u003cimg src=\"https://badge.fury.io/js/generate-random-secure-password.svg\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://codecov.io/gh/EdTonatto/generate-random-secure-password-ts\"\u003e\u003cimg src=\"https://codecov.io/gh/EdTonatto/generate-random-secure-password-ts/branch/main/graph/badge.svg?token=LXI45Q9YTU\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://app.codacy.com/gh/EdTonatto/generate-random-secure-password-ts/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade\"\u003e\u003cimg src=\"https://app.codacy.com/project/badge/Grade/665c0d8b733141e5bb11f6df4fc5ff7e\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/EdTonatto/generate-random-secure-password-ts/actions/workflows/ci.js.yml\"\u003e\u003cimg src=\"https://github.com/EdTonatto/generate-random-secure-password-ts/actions/workflows/ci.js.yml/badge.svg\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/EdTonatto/generate-random-secure-password-ts/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/EdTonatto/generate-random-secure-password-ts.svg\"/\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n# Generate Random Secure Password\n\nGenerate Random Secure Password is a library that generates secure passwords according to user's given options. \n\n## Installation\n\nTo install this library, you can use npm or yarn:\n\n```bash\nnpm install generate-random-secure-password\n```\n\nor\n\n```bash\nyarn add generate-random-secure-password\n```\n\n## Usage\n\nAfter installing the library, you can import it into your project as follows:\n\n```javascript\nconst passwordGenerator = require('generate-random-secure-password');\n```\n\nOnce imported, you can use the `passwordGenerator` object to generate secure passwords with the following function:\n\n```javascript\npasswordGenerator.generate(options);\n```\n\nThe `options` parameter is an object that contains the following properties:\n\n- `length`: the length of the password (default is `8`)\n- `numbers`: whether to include numbers in the password (default is `false`)\n- `symbols`: whether to include symbols in the password (default is `false`)\n- `lowercase`: whether to include lowercase letters in the password (default is `true`)\n- `uppercase`: whether to include uppercase letters in the password (default is `true`)\n- `excludeSimilarCharacters`: wheter to exclude similar characters in the password (default is `false`)\n\nHere is an example usage:\n\n```javascript\nconst passwordGenerator = require('generate-random-secure-password');\n\nconst options = {\n  length: 16,\n  numbers: true,\n  symbols: true,\n  uppercase: true,\n  lowercase: true\n};\n\nconst password = passwordGenerator.generate(options);\nconsole.log(password); // Example output: \"iL9%Zp6#G4@oE2vJ\"\n```\n\n## Development\n\nIf you want to develop or contribute to this project, you can clone the repository and run the following commands:\n\n```bash\nnpm install # or yarn install\nnpm run build # or yarn build\nnpm run test # or yarn test\n```\n\nThis will install the necessary dependencies, build the project, and run the tests. \n\n## License\n\nThis library is licensed under the MIT license. See [LICENSE](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedtonatto%2Fgenerate-random-secure-password-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedtonatto%2Fgenerate-random-secure-password-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedtonatto%2Fgenerate-random-secure-password-ts/lists"}