Compare commits
No commits in common. "master" and "v1.0.2" have entirely different histories.
28
README.md
28
README.md
@ -1,23 +1,13 @@
|
||||
# Commandline Authenticator
|
||||
|
||||
| Sponsored by [ppl](https://ppl.family)
|
||||
# authenticator-cli
|
||||
|
||||
A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, Facebook Authenticator, TOTP, etc)
|
||||
|
||||
```bash
|
||||
authenticator --generate --issuer "ACME" --account "user@example.com"
|
||||
|
||||
Key: ru36 53z3 fmh4 d67u kgeh 7rgj hcbb ypnd
|
||||
Token: 947464
|
||||
URL: otpauth://totp/ACME:user@example.com?secret=RU3653Z3FMH4D67UKGEH7RGJHCBBYPND&issuer=ACME&algorithm=SHA1&digits=6&period=30
|
||||
```
|
||||
|
||||
## Install
|
||||
|
||||
**Install node.js 4.0+**:
|
||||
|
||||
```bash
|
||||
curl -L bit.ly/iojs-min | bash
|
||||
curl -L https://bit.ly/iojs-min | bash
|
||||
```
|
||||
|
||||
**Install authenticator**:
|
||||
@ -27,16 +17,24 @@ npm install --global authenticator-cli
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
```
|
||||
authenticator --help
|
||||
```
|
||||
|
||||
```
|
||||
authenticator --generate --issuer "ACME" --account "user@example.com"
|
||||
|
||||
Key: ru36 53z3 fmh4 d67u kgeh 7rgj hcbb ypnd
|
||||
Token: 947464
|
||||
URL: otpauth://totp/ACME:user@example.com?secret=RU3653Z3FMH4D67UKGEH7RGJHCBBYPND&issuer=ACME&algorithm=SHA1&digits=6&period=30
|
||||
```
|
||||
|
||||
## Browser & Node Authenticator
|
||||
|
||||
You may also be interested in
|
||||
|
||||
* [Browser Authenticator](https://git.coolaj86.com/coolaj86/browser-authenticator.js) over at <https://git.coolaj86.com/coolaj86/browser-authenticator.js>
|
||||
* [Node.js Authenticator](https://git.coolaj86.com/coolaj86/node-authenticator.js) over at <https://git.coolaj86.com/coolaj86/node-authenticator.js>
|
||||
* [Browser Authenticator](https://github.com/Daplie/browser-authenticator) over at <https://github.com/Daplie/browser-authenticator>
|
||||
* [Node.js Authenticator](https://github.com/Daplie/node-authenticator) over at <https://github.com/Daplie/node-authenticator>
|
||||
|
||||
## Full Usage
|
||||
|
||||
|
||||
15
package.json
15
package.json
@ -1,16 +1,15 @@
|
||||
{
|
||||
"name": "authenticator-cli",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.2",
|
||||
"description": "A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, TOTP / 2FA / MFA / OTP, etc)",
|
||||
"homepage": "https://git.coolaj86.com/coolaj86/authenticator-cli.js",
|
||||
"main": "index.js",
|
||||
"bin": {
|
||||
"authenticator": "bin/authenticator.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"authenticator": "^1.1.0",
|
||||
"cli": "^1.0.1",
|
||||
"qrcode-terminal": "^0.12.0"
|
||||
"cli": "^0.11.1",
|
||||
"qrcode-terminal": "^0.10.0"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
@ -18,7 +17,7 @@
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://git.coolaj86.com/coolaj86/authenticator-cli.js.git"
|
||||
"url": "git+https://github.com/Daplie/authenticator-cli.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Authenticator",
|
||||
@ -31,7 +30,6 @@
|
||||
"microsoft",
|
||||
"facebook",
|
||||
"daplie",
|
||||
"ppl",
|
||||
"totp",
|
||||
"2fa",
|
||||
"mfa",
|
||||
@ -42,6 +40,7 @@
|
||||
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
||||
"license": "MPL-2.0",
|
||||
"bugs": {
|
||||
"url": "https://git.coolaj86.com/coolaj86/authenticator-cli.js/issues"
|
||||
}
|
||||
"url": "https://github.com/Daplie/authenticator-cli/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Daplie/authenticator-cli#readme"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user