@authsignal/browser 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,28 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Authsignal Browser Javascript SDK
|
|
2
|
+
|
|
3
|
+
**[Authsignal](https://www.authsignal.com) provides passwordless step up authentication (Multi-factor Authentication - MFA) that can be placed anywhere within your application. Authsignal also provides a node-code fraud risk rules engine to manage when step up challenges are triggered.**
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Usage
|
|
7
|
+
|
|
8
|
+
The Authsignal Browser API can be used to launch the Authsignal Prebuilt MFA page to let users set up MFA and complete challenges.
|
|
9
|
+
|
|
10
|
+
See the [documentation](https://docs.authsignal.com) for details on how to use this SDK with the Authsignal Server APIs.
|
|
11
|
+
|
|
12
|
+
### Server SDKs
|
|
13
|
+
[NodeJS](https://www.npmjs.com/package/@authsignal/node)
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
Add the `@authsignal/browser` package to your `package.json`.
|
|
18
|
+
|
|
19
|
+
### npm
|
|
20
|
+
```bash
|
|
21
|
+
npm install @authsignal/browser
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### yarn
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
yarn add @authsignal/browser
|
|
28
|
+
```
|