Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magalhini/totp-seed-cli
Generate one-time codes (OTP) directly from the shell and into your clipboard.
https://github.com/magalhini/totp-seed-cli
cli cli-tool otp totp totp-generator
Last synced: about 1 month ago
JSON representation
Generate one-time codes (OTP) directly from the shell and into your clipboard.
- Host: GitHub
- URL: https://github.com/magalhini/totp-seed-cli
- Owner: magalhini
- Created: 2023-08-04T14:08:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-04T14:12:00.000Z (over 1 year ago)
- Last Synced: 2024-04-09T12:09:30.598Z (9 months ago)
- Topics: cli, cli-tool, otp, totp, totp-generator
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TOTP Seed CLI
Given a TOTP seed, you can generate one-time passcodes on your CLI, also receiving the time remaining for a particular code. Passing the `-c` option will also immediately copy it to the clipboard.
```bash
topt-seed-cli -s BD6ZWNRLEOG5JUQHC2YW6BXX2K675AZX╔════════════╗
║ ║
║ 047232 ║
║ ║
╚════════════╝9 seconds remaining for this code.
```---
## tl;dr
1. Install it globally using `npm i -g totp-seed-cli`.
2. Pass it a seed and use the optional `-c` flag to copy the code to your clipboard: `totp -s ABCDEFGH -c`.
3. Pass the optional `-w` if you'd like it to generate another code once time expires.---
## Installing
To use `totp` locally in your CLI, install it globally using npm:
`npm i -g totp-seed-cli`
## Usage
Use `-s` to pass in your seed:
`totp -s ABCDEFGH`
This will output the code to the console.
### Copy to clipboard
To display the code and the time remaining, but also copy it to the clipboard, pass `-c`:
`totp -s ABCDEFGH -c`
### Save seed and read it from local file:
To save the seed in a local file for future use, pass `-S`
`totp -s ABCDEFGH -S`
From here on, you can just call `totp`.
### Create an alias for your seed
Using your shell of choice, you can create an alias so you can call this from anywhere without having to pass your seed.
If you're using `zsh`, use your editor to edit your `.zshrc`:1. `vi ~/.zshrc`
Add an alias with your seed and the copy command, such as:
`alias otp="totp -s ABCDEFGH -c"`
Save the file and restart your terminal. You can now simply call `otp` from anywhere.
**Acknowledgements**: the source for the `TOTP` Class is entirely sourced from the [Blendist's TOTP.io](https://github.com/venables/totp.io) project, which is the web equivalent of this project and where I got the inspiration to do this from.
## Requirements
Non-ESM packages specifically to work with `node v16.15.0`.