UNPKG

astrapay

Version:

AstraPay SDK for integrating M-Pesa STK Push in Node.js applications.

14 lines (11 loc) 343 B
const AstraPay = require("astrapay"); const client = new AstraPay({ consumerKey: "YOUR_KEY", consumerSecret: "YOUR_SECRET", shortcode: "174379", passkey: "YOUR_PASSKEY", callbackUrl: "https://yourdomain.com/callback", }); client.pay({ phone: "254712345678", amount: 10 }) .then(console.log) .catch(console.error);