Socket
Socket
Sign inDemoInstall

@startupjs/2fa-totp-authentication-provider

Package Overview
Dependencies
Maintainers
6
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@startupjs/2fa-totp-authentication-provider

Google authenticator provider for @startupjs/2fa-manager package


Version published
Maintainers
6
Created
Source

@startupjs/2fa-totp-authentication-provider

Provider for verification via google authenticator app.

Dependencies

@startupjs/2fa-manager >= 0.34.0,
@startupjs/2fa-totp-authentication >= 0.34.0

Installation

  yarn add @startupjs/2fa-totp-authentication-provider

IMPORTANT: To use this method, in advance, the user must provide a secret in the form of a QR code, which he will add to the google-authenticator. More on this in the google-authenticator documentation

Using

You need to import the GAProvider component from @startupjs/2fa-totp-authentication-provider.

import { GAProvider } from '@startupjs/2fa-totp-authentication-provider'

Then you need to add GAProvider to the providers array of initTwoFAManager. The second argument of the array is the options for the provider. TotpProvider expects an application name, this name will be displayed in the google authenticator interface.

You can get the name of the application from app.json, usually this file is located in the root of the project:

import app from 'path/to/your/app.json'

...

initTwoFAManager(ee, {
  providers: [
    [TotpProvider, { appName: app.name }]
  ]
})

FAQs

Package last updated on 16 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc