1.0.2 • Published 2 years ago

@ko-fi/next v1.0.2

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

Ko-fi webhook handler for Next.js.

For more information visit https://ko-fi.com/manage/webhooks


Installation

npm

npm install @ko-fi/next

yarn

yarn add @ko-fi/next

Example

View example implementation here;

Create API Route, e.g pages/api/webhook.js

import { kofi } from '@ko-fi/next';

export default kofi(app, {
    onData: (data, req) => {
        console.log('onData called');
    },
    onCommission: (data, req) => {
        console.log('onCommission called');
    },
    onDonation: (data, req) => {
        console.log('onDonation called');
    },
    onShopOrder: (data, req) => {
        console.log('onShopOrder called');
    },
    onSubscription: (data, req) => {
        console.log('onSubscription called');
    },
    onError: (err, req) => {
        console.error('onError called');
    },
    verificationToken: 'token',
});