Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
thepeer-vue
Advanced tools
This package only supports Vue 3.
npm install thepeer-vue
yarn add thepeer-vue
Only use in
<script setup>
orsetup()
.Applies to Vue and Nuxt.
<script setup lang="ts">
import { useCheckout } from 'thepeer-vue'
const checkoutWithThepeer = () => {
console.log('initializing sdk')
useCheckout({
currency: 'NGN',
amount: 10000,
meta: {
discount: 'black friday'
},
onSuccess: (response: any) => {
console.log('🚀 onSuccess', response)
},
onError: (response: any) => {
console.log('🚀 onError', response)
},
onClose: (response: any) => {
console.log('🚀 onClose', response)
},
publicKey: 'YOUR_PUBLIC_KEY',
email: 'CUSTOMER_EMAIL'
})
}
</script>
<template>
<button @click="checkoutWithThepeer">Pay with Thepeer</button>
</template>
Implementation is similar for useSend
and useDirectCharge
.
MIT © Idorenyin Udoh
FAQs
Vue package for Thepeer
The npm package thepeer-vue receives a total of 12 weekly downloads. As such, thepeer-vue popularity was classified as not popular.
We found that thepeer-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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.