Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlcarveth/genpass
Password generator function which can be installed as a command-line executable using the Deno runtime.
https://github.com/jlcarveth/genpass
Last synced: about 7 hours ago
JSON representation
Password generator function which can be installed as a command-line executable using the Deno runtime.
- Host: GitHub
- URL: https://github.com/jlcarveth/genpass
- Owner: JLCarveth
- Created: 2022-07-14T01:10:07.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T13:50:42.000Z (2 days ago)
- Last Synced: 2025-01-17T14:44:17.634Z (2 days ago)
- Language: TypeScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A simple password generator function that can be installed as a command-line tool
when using the [Deno](https://deno.land/) javascript runtime.Generates memorable-yet-secure passwords like the following:
```
KickGoldfishBasis857
ProneGottenDensity494
DisposalUnscathedOverstay51
KnickersQuiverUnread752
ApplyPursuitGranola171
```Run the following command to generate an executable:
```
deno compile --allow-read --output genpass https://raw.githubusercontent.com/JLCarveth/genpass/master/password_gen.ts
```Running `genpass` takes no options, and returns a single password to stdout. Optionally, a single parameter can be provided to specify the number of passwords to generate:
```
$ genpass 5
DudingCommunicatePredominant303
YieldedIndependentlyGuiyang330
MicroaggressionsObnoxiousAquarius553
RockinessCounteractedSpin506
TourismVoluntaryJosie740
```