0.0.4 • Published 2 years ago

@gwservices/guardian v0.0.4

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

Guardian

release

Guardian is a user data collector tool, created for payment fraud protection.

Usage

With CDN:

Add the following code snippet into your html file's head.

<script src="https://unpkg.com/@gwservices/guardian@latest/dist/guardian.umd.js"></script>
<script>
    new Guardian('https://my_gateway_url', 'public_api_key').process();
</script>

With import:

import Guardian from '@gwservices/guardian';

let guard = new Guardian('https://my_gateway_url', 'public_api_key').process();

// Optional
Guardian.getData().then((data) => {
    console.log(data);
});

(Optional) Get the collected data

You can do it before submitting your form and attach the result to your request.

<script>
    Guardian.getData().then((data) => {
        console.log(data);
    });
</script>
0.0.3

2 years ago

0.0.2

2 years ago

0.0.4

2 years ago

0.0.1

2 years ago