Compare commits

..

19 Commits

Author SHA1 Message Date
AJ ONeal
afb0eab0a3 v1.0.5 2018-04-18 20:28:49 -06:00
AJ ONeal
b35b16d403 merge https://github.com/Daplie/authenticator-cli/pull/2 2018-04-18 20:27:28 -06:00
AJ ONeal
f7532d7f8c update urls 2018-04-18 20:23:27 -06:00
AJ ONeal
dfb35b9810 rebrand 2018-04-18 20:19:48 -06:00
24de3b0ec8 Update 'README.md' 2017-11-20 16:38:50 +00:00
AJ ONeal
c8283c3bec update urls 2017-09-22 16:53:25 -06:00
AJ ONeal
522571b367 auto-update banner 2016-12-30 02:38:05 -07:00
AJ ONeal
9a7f82b654 auto-update ad 2016-12-30 02:21:23 -07:00
AJ ONeal
9b1ee7a26b Update README.md 2016-11-25 10:32:45 -07:00
AJ ONeal
52050f5ff0 Taking Back the Internet 2016-11-01 18:37:02 -06:00
AJ ONeal
6b58576169 Update README.md 2016-01-02 01:30:32 -08:00
AJ ONeal
7bcefc7f1b Update README.md 2016-01-02 01:29:22 -08:00
AJ ONeal
45d9368fec Update README.md 2016-01-02 01:27:58 -08:00
AJ ONeal
b261f1754a v1.0.2 2016-01-02 01:21:33 -08:00
AJ ONeal
03e01665e2 fix bin 2016-01-02 01:21:30 -08:00
AJ ONeal
55394bcb47 v1.0.1 2016-01-02 01:20:18 -08:00
AJ ONeal
8b503a79af expose authenticator 2016-01-02 01:20:13 -08:00
AJ ONeal
843569d62d add deps 2016-01-02 01:19:40 -08:00
AJ ONeal
49678fbfd5 Update README.md 2016-01-02 01:19:20 -08:00
3 changed files with 42 additions and 9 deletions

View File

@ -1,11 +1,23 @@
# authenticator-cli # Commandline Authenticator
| Sponsored by [ppl](https://ppl.family)
A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, Facebook Authenticator, TOTP, etc) 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+**: **Install node.js 4.0+**:
```bash ```bash
curl -L https://bit.ly/iojs-min | bash curl -L bit.ly/iojs-min | bash
``` ```
**Install authenticator**: **Install authenticator**:
@ -13,6 +25,21 @@ curl -L https://bit.ly/iojs-min | bash
npm install --global authenticator-cli npm install --global authenticator-cli
``` ```
## Usage
```bash
authenticator --help
```
## 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>
## Full Usage
``` ```
Usage: Usage:
authenticator [OPTIONS] authenticator [OPTIONS]

1
index.js Normal file
View File

@ -0,0 +1 @@
module.exports = require('authenticator');

View File

@ -1,19 +1,24 @@
{ {
"name": "authenticator-cli", "name": "authenticator-cli",
"version": "1.0.0", "version": "1.0.5",
"description": "A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, TOTP / 2FA / MFA / OTP, etc)", "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", "main": "index.js",
"bin": { "bin": {
"authenticator-cli": "authenticator.js" "authenticator": "bin/authenticator.js"
},
"dependencies": {
"authenticator": "^1.1.0",
"cli": "^1.0.1",
"qrcode-terminal": "^0.12.0"
}, },
"dependencies": {},
"devDependencies": {}, "devDependencies": {},
"scripts": { "scripts": {
"test": "node bin/authenticator.js" "test": "node bin/authenticator.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/Daplie/authenticator-cli.git" "url": "git+https://git.coolaj86.com/coolaj86/authenticator-cli.js.git"
}, },
"keywords": [ "keywords": [
"Authenticator", "Authenticator",
@ -26,6 +31,7 @@
"microsoft", "microsoft",
"facebook", "facebook",
"daplie", "daplie",
"ppl",
"totp", "totp",
"2fa", "2fa",
"mfa", "mfa",
@ -36,7 +42,6 @@
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)", "author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "MPL-2.0", "license": "MPL-2.0",
"bugs": { "bugs": {
"url": "https://github.com/Daplie/authenticator-cli/issues" "url": "https://git.coolaj86.com/coolaj86/authenticator-cli.js/issues"
}, }
"homepage": "https://github.com/Daplie/authenticator-cli#readme"
} }