
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
@stigg/vue-sdk
Advanced tools
Stigg SDK for Vue 3 applications.
Using npm
npm install @stigg/vue-sdk
Using yarn
yarn add @stigg/vue-sdk
Configure the SDK by wrapping your application in StiggProvider:
<script setup lang="ts">
import {StiggProvider} from '@stigg/vue-sdk';
const apiKey = "<STIGG_CLIENT_API_KEY>";
</script>
<template>
<StiggProvider :apiKey="apiKey">
<NestedComponents />
</StiggProvider>
</template>
Use Paywall component to render the public pricing page or customer paywall:
<script setup lang="ts">
import {StiggProvider, PaywallProps} from '@stigg/vue-sdk';
const apiKey = "<STIGG_CLIENT_API_KEY>";
const paywall: PaywallProps = {
onPlanSelected: ({plan}) => {
console.log(`Selected plan: ${plan.displayName}`);
}
}
</script>
<template>
<StiggProvider :apiKey="apiKey">
<Paywall v-bind="paywall" />
</StiggProvider>
</template>
Use the Customer Portal component to provide customers with visibility to their current subscription details:
<script setup lang="ts">
import {StiggProvider, CustomerPortal, CustomerPortalProps} from '@stigg/vue-sdk';
const apiKey = "<STIGG_CLIENT_API_KEY>";
const customerId = "<CUSTOMER-ID>";
const customerPortal: CustomerPortalProps = {
onManageSubscription: () => {
console.log('Manage subscription');
}
}
</script>
<template>
<StiggProvider :apiKey="apiKey" :customer-id="customerId">
<CustomerPortal v-bind="customerPortal"/>
</StiggProvider>
</template>
FAQs
Stigg SDK for Vue 3 applications.
The npm package @stigg/vue-sdk receives a total of 563 weekly downloads. As such, @stigg/vue-sdk popularity was classified as not popular.
We found that @stigg/vue-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 29 open source maintainers 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
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.