An open API service indexing awesome lists of open source software.

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.

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/)