Script loading module for VGS Collect.js
Explore the docs »
Report Bug
·
Request Feature
VGS Collect.js is a JavaScript library that allows you to securely collect data via any form. Instantly create custom forms that adhere to PCI, HIPAA, GDPR, or CCPA security requirements. VGS intercepts sensitive data before it hits your servers and replaces it with aliased versions while securing the original data in our vault. The form fields behave like traditional forms while preventing access to the unsecured data by injecting secure iframe components.
This module intended to simplify VGS Collect.js script loading process. To stay PCI Compliant it's a mandatory to load js from our js.verygoodvault.com
domain as a consequence you need to find the best way to include our script, this small utility will solve the problem for you. You can still use the conventional way and just stick a reference to the script in the HEAD section of your page but you may lose some beneficial advantages the package provides:
Install the package using npm
:
npm install @vgs/collect-js
The imported function inserts the <script>
tag to the document head or body and returns the Collect instance as the result of resolved Promise. The script won't be loaded until loadVGSCollect()
invoked. In order to speed up cross-domain loading, dns-prefetch
and preconnect
were added as a side effect.
import { loadVGSCollect } from '@vgs/collect-js';
// load script
const collect = await loadVGSCollect({
vaultId: '<vault_id>', // required
environment: '<environment>',
version: '<x.x.x>'
}).catch((e) => {
// script was not loaded
});
// https://www.verygoodsecurity.com/docs/vgs-collect/js/integration#form-state
const form = collect.init(state => { console.log(state); });
// https://www.verygoodsecurity.com/docs/vgs-collect/js/integration#create-and-setup-form-fields
form.field({...});
form.field({...});
form.field({...});
// https://www.verygoodsecurity.com/docs/vgs-collect/js/integration#setup-form-submission
form.submit(...);
or use Promise syntax as an alternative:
import { loadVGSCollect } from '@vgs/collect-js';
// load script
loadVGSCollect({
vaultId: '<vault_id>', // required
environment: '<environment>',
version: '<x.x.x>'
})
.then((collect) => {
const form = collect.create(state => { console.log(state); });
})
.catch((e) => {
// script was not loaded
});
Available properties:
Property | Type | Description | Default |
---|---|---|---|
vaultId | string | Every VGS vault has a unique vault id - it’s a string value beginning with the prefix tnt . |
required |
environment | string | Vault environment. Can be sandbox , live , or one with a specified data region (e.g live-eu-1 ). |
'sandbox' |
version | string | You can specify library version being loaded. Version must be >= 2.0. Please check our Changelog for more details. | 'canary' |
A wrapper over original .create()
method. As we have already received vault_id
and environment
from the loadVGSCollect()
argument, there is no need to specify those params again. The method only returns the form state in the callback.You can still use .create()
if necessary.
VGSCollect.init(state => { console.log(state); });
Full abilities of VGS Collect.js and integration details you can find in our documentation.
We strongly recommend to add the CSP to your application. Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. Please create CSP directives for the following domains:
connect-src https://js.verygoodvault.com https://js3.verygoodvault.com https://vgs-collect-keeper.apps.verygood.systems
frame-src https://js.verygoodvault.com https://js3.verygoodvault.com
script-src https://js.verygoodvault.com https://js3.verygoodvault.com
If you have any questions please reach out to support or open issue here.