Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@beyondidentity/bi-sdk-js-rolling-test

Package Overview
Dependencies
Maintainers
5
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@beyondidentity/bi-sdk-js-rolling-test

Passwordless authentication with our Authenticator embedded into you app

  • 2.59.1-478
  • latest
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

beyond-identity-logo

Beyond Identity JS SDK

License

Embedded

Offering the entire experience embedded in your product. Users will not need to navigate to the Beyond Identity Authenticator.

Installation

To integrate into your application, add embeddedsdk to your dependencies:

yarn add @beyondidentity/bi-sdk-js-rolling

or

npm install @beyondidentity/bi-sdk-js-rolling

You may omit this step if you plan to import bi-embedded.js directly (see below).

Then, in your application, initialize an instance of the Embedded SDK

TypeScript

import * as embeddedsdk from "@beyondidentity/bi-sdk-js-devel";

async function initialize(): Promise<embeddedsdk.Embedded> {
    return embeddedsdk.Embedded.initialize();
}

JavaScript

This example shows how bi-embedded.js may be imported directly without adding it as a dependency to your application. bi-embedded.js is a UMD module and will be installed as window.embeddedsdk.

import * as _embeddedsdk from "./bi-embedded.js";

async function initialize() {
  return window.embeddedsdk.Embedded.initialize();
}

Usage

Check out the documentation for more information.

FAQs

Package last updated on 13 Jun 2022

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc