https://github.com/angelmtztrc/passgen
A command-line tool built with Deno and TypeScript that allows you to generate random and secure passwords.
https://github.com/angelmtztrc/passgen
cliffy deno typescript
Last synced: 2 months ago
JSON representation
A command-line tool built with Deno and TypeScript that allows you to generate random and secure passwords.
- Host: GitHub
- URL: https://github.com/angelmtztrc/passgen
- Owner: angelmtztrc
- Created: 2021-07-06T01:27:02.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-15T00:46:50.000Z (almost 5 years ago)
- Last Synced: 2025-06-14T13:43:28.045Z (about 1 year ago)
- Topics: cliffy, deno, typescript
- Language: TypeScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Passgen
A command-line tool that allows you to generate random and secure passwords.
## Usage
Before of all make sure that you have installed `Deno 1.11.5` or later. Then run the following:
```sh
deno run main.ts [options]
# example
deno run main.ts --length 20 --allow-symbols
```
## Command-line Options
| Short | Long | Description |
| :---- | :---------------- | :------------------------------------------- |
| `-h` | `--help` | Show the information about the program. |
| `-v` | `--version` | Show the version number for this program. |
| `-l` | `--length` | Set the length of the password. (Default: 8) |
| `-as` | `--allow-symbols` | Allow generate the password with symbols. |
| `-an` | `--allow-numbers` | Allow generate the password with numbers. |
## License
[MIT](https://choosealicense.com/licenses/mit/)