Installation
You can get the npm package with the Face web components here: https://www.npmjs.com/package/@regulaforensics/vp-frontend-face-components/
Install via NPM
On the command line, navigate to the root directory of your project:
cd /path/to/project
Run the following command:
npm init
Install @regulaforensics/vp-frontend-face-components
:
npm i @regulaforensics/vp-frontend-face-components
Create index.html
and index.js
files in the root directory of the project.
Import @regulaforensics/vp-frontend-face-components
into your index.js
:
import './node_modules/@regulaforensics/vp-frontend-face-components/dist/main.js';
In index.html
connect index.js
and add the name of the component you want to use. Available components:
<face-capture></face-capture>
- for create a face snapshot;<face-liveness></face-liveness>
- for liveness verification.
Example:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My app</title>
</head>
<body>
<face-capture></face-capture>
<script type="module" src="index.js"></script>
</body>
</html>
Install via CDN
Connect the script in your .html
file. CDN link: unpkg.com/:package@:version/:file
Example:
<script src="https://unpkg.com/@regulaforensics/vp-frontend-face-components@1.2.0/dist/main.js"></script>
Add the name of the component to the html, as in the example above.