
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
❗️BETA
This project is a minimal Vue wrapper of Checkout.com Frames. This version only supports the multiple iframes configuration.
npm install frames-vue
Make sure that you load the Checkout.com CDN script before you mount any Frames components. You can add this, for example, in your index.html file.
<script src="https://cdn.checkout.com/js/framesv2.min.js"></script>
If you use server-side rendering, such as with Nuxt.js, you can add this inside your head
object script
array:
head: {
script: [
{
src: "https://cdn.checkout.com/js/framesv2.min.js",
},
],
}
import { Frames, CardNumber, ExpiryDate, Cvv } from "frames-vue";
To tokenize the payment card, this wrapper includes method submitCard()
. In the below example, we call this when the "Pay Now" button is clicked.
<template>
<div id="payment-form">
<Frames
:config="config"
@ready="ready"
@frameFocus="frameFocus"
@cardTokenized="cardTokenized"
/>
<CardNumber />
<ExpiryDate />
<Cvv />
<button id="pay-button" @click="submitCard">Pay Now</button>
</div>
</template>
<script>
import { Frames, CardNumber, ExpiryDate, Cvv } from "frames-vue";
export default {
name: "App",
components: {
Frames,
CardNumber,
ExpiryDate,
Cvv,
},
data() {
return {
config: {
debug: true,
publicKey: "pk_test_42e79f8e-28ad-4eed-8586-2764b1cc78e2",
localization: {
cardNumberPlaceholder: "Card number",
expiryMonthPlaceholder: "MM",
expiryYearPlaceholder: "YY",
cvvPlaceholder: "CVV",
},
style: {
base: {
fontSize: "17px",
},
},
},
};
},
methods: {
cardTokenized(e) { console.log(`Card token: ${e.token}`) },
ready(e) { console.log("ready", e) },
frameFocus(e) { console.log("frameFocus", e) },
submitCard() { Frames.submitCard() },
},
};
</script>
For cases where you render the payment form at the same time as the billing and cardholder name input, you can use method setCardholder()
to update Frames with this data before submitting.
<template>
...
<input
id="cardholder-name"
placeholder="Cardholder Name"
v-model="config.cardholder.name"
/>
<input
id="cardholder-phone"
placeholder="Phone Number"
v-model="config.cardholder.phone"
/>
<input
id="cardholder-address-one"
placeholder="Address 1"
v-model="config.cardholder.billingAddress.addressLine1"
/>
...
<Frames :config="config" />
...
</template>
<script>
...
data() {
return {
config: {
cardholder: {
name: "",
billingAddress: {
addressLine1: "",
addressLine2: "",
zip: "",
city: "",
state: "",
country: "GB"
},
phone: "",
},
...
},
};
},
methods: {
submitCard() {
Frames.setCardholder(this.config.cardholder);
Frames.submitCard();
},
},
...
</script>
prop | description |
---|---|
config | The config is an object following Checkout.com Frames reference. |
ready | Triggered when Frames is registered on the global namespace and safe to use. |
frameActivated | Triggered when the form is rendered. |
frameFocus | Triggered when an input field receives focus. Use it to check the validation status and apply the wanted UI changes. |
frameBlur | Triggered after an input field loses focus. Use it to check the validation status and apply the wanted UI changes. |
frameValidationChanged | Triggered when a field's validation status has changed. Use it to show error messages or update the UI. |
paymentMethodChanged | Triggered when a valid payment method is detected based on the card number being entered. Use this event to change the card icon. |
cardValidationChanged | Triggered when the state of the card validation changes. |
cardSubmitted | Triggered when the card form has been submitted. |
cardTokenized | Triggered after a card is tokenized. |
cardTokenizationFailed | Triggered if the card tokenization fails. |
function | description |
---|---|
init | Initializes (or re-initializes) Frames. |
isCardValid | Returns the state of the card form validation. |
submitCard | Submits the card form if all form values are valid. |
addEventHandler | Adds a handler that is called when the specified event is triggered. |
removeEventHandler | Removes a previously added handler from an event by providing the event name and handler as arguments in the method. |
removeAllEventHandlers | Removes all handlers added to the event specified. |
enableSubmitForm | Retains the entered card details and allows you to resubmit the payment form. |
FAQs
❗️BETA
The npm package frames-vue receives a total of 2 weekly downloads. As such, frames-vue popularity was classified as not popular.
We found that frames-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.