https://github.com/wiremoons/qpass
Provide a choice of passwords based on three letter word combinations and different marks.
https://github.com/wiremoons/qpass
Last synced: about 1 year ago
JSON representation
Provide a choice of passwords based on three letter word combinations and different marks.
- Host: GitHub
- URL: https://github.com/wiremoons/qpass
- Owner: wiremoons
- License: mit
- Created: 2024-03-24T08:34:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T12:24:20.000Z (about 2 years ago)
- Last Synced: 2025-02-17T23:44:40.239Z (over 1 year ago)
- Language: TypeScript
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## About
_Quick Password_ `qpass` : Provide a choice of passwords based on combination
three letter words and different marks.
Command line applications written in _Typescript_ using the
[Deno](https://deno.land/) runtime.
## Installation
You will need to have a copy of the _Deno_ runtime installed on your computer.
Instructions to achieve this as are available from the web page here:
[https://docs.deno.com/runtime/manual/getting_started/installation](https://docs.deno.com/runtime/manual/getting_started/installation).
Installation of _Deno_ is easy as it is just a single binary executable file -
just download a copy and add it to a directory in your path.
Once _Deno_ itself is installed, two easy options to install `qpass` are:
The `qpass` program can be installed as a script using the command:
```console
deno install -f --quiet --allow-read --allow-env=QPASS_WORDS https://raw.githubusercontent.com/wiremoons/qpass/main/qpass.ts
```
Alternatively a copy of `qpass` can be compiled together with the _Deno_ binary
to create a self contained _compiled_ standalone executable as the `qpass`
program:
```console
deno compile --quiet --allow-read --allow-env=QPASS_WORDS https://raw.githubusercontent.com/wiremoons/qpass/main/qpass.ts
```
## Usage
Once the above installation has been completed, the program can be run with the
command: `qpass`. Additional help on the options available when executed can be
found with the command line flags:
- `-h` : show the command line flag help
- `-a` : shows the additional help information.
## Updates and Changes
Updates made to the program as it is developed are captured in the
[CHANGELOG.md](./CHANGELOG.md) project file.
To install an updated version, follow the install steps above that will replace
the current installed version with any newer version available.
## License
Licensed with the [MIT License](./LICENSE).