1.0.5 • Published 2 years ago

@ko-fi/express v1.0.5

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

Ko-fi webhook handler for Express.

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


Installation

npm

npm install @ko-fi/express

yarn

yarn add @ko-fi/express

Example

View example implementation here;

import express from 'express';

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

const app = express();

// Enable req body parsing
app.use(
    express.urlencoded({
        extended: true,
    })
);

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',
});

app.listen(3000);
1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago