npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tajiri

v1.1.0

Published

Mpesa nodeJs SDK

Downloads

22

Readme

Mpesa Express

Installation

npm install tajiri

or

yarn add tajiri

Warning: Note that this npm package name is case sensitive.

Description

Mpesa Express is a Node.js package for interacting with Mpesa APIs, providing methods for authentication, STK push, STK query, and URL registration.

Response Format

The responses from the Mpesa API calls follow a standard format. Here's how a typical response might look like

{
  "error": false,
  "data": {
    // Response data specific to the API call
  }
}

Usage

Initialization

const Mpesa = require("tajiri-mpesa-express");

// Initialize with your configuration
const config = {
  CONSUMER_KEY: "your_consumer_key",
  CONSUMER_SECRET: "your_consumer_secret",
  // other configuration options...
};
const mpesa = new Mpesa({ environment: "sandbox", config });

Creating a New Object

const Mpesa = require("tajiri-mpesa-express");

// Initialize with your configuration
const config = {
  BUSINESS_SHORT_CODE: process.env.PAYBILL,
  CONSUMER_KEY: process.env.CONSUMER_KEY,
  CONSUMER_SECRET: process.env.CONSUMER_SECRET,
  TRANSACTION_TYPE: process.env.TRANSACTION_TYPE,
  TRANSACTION_DESCRIPTION: "Payment of x",
  AMOUNT: 1,
  PHONE_NUMBER: "254........",
  CALLBACK_URL: process.env.CALLBACK_URL,
  ACCOUNT_REFERENCE: process.env.ACCOUNT_REFERENCE,
  PASS_KEY: process.env.PASS_KEY,
};
const tajiri = new Mpesa({ environment: "sandbox", config });

Authentication

Using then/catch

// Perform authentication

mpesa.auth().then((res) => {
  if (!res.error) {
    console.log(res.data);
  } else {
    console.error(res.data);
  }
});

Using async/await

// Perform authentication using async/await
async function authenticate() {
  try {
    const res = await mpesa.auth();
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  } catch (err) {
    console.error(err);
  }
}
authenticate();

Valid response:

{
  "error": false,
  "data": {
    "error": false,
    "data": {
      "access_token": "VGFeagA4irIQCW4cTMZXO1e4nq10",
      "expires_in": "3599"
    }
  }
}

STK Push

Using then/catch

// Perform STK push
mpesa
  .stkPush({
    // If any of these keys are not provided here, they will be picked from the config object by default
    BUSINESS_SHORT_CODE: 123456,
    TRANSACTION_TYPE: "CustomerPayBillOnline",
    AMOUNT: 100,
    PHONE_NUMBER: "254........",
    CALLBACK_URL: "https://example.com/callback",
    // other parameters...
  })
  .then((res) => {
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  });

Using async/await

// Perform STK push using async/await
// Perform STK push using async/await
async function stkPush() {
  try {
    const res = await mpesa.stkPush({
      // If any of these keys are not provided here, they will be picked from the config object by default
      BUSINESS_SHORT_CODE: 123456,
      TRANSACTION_TYPE: "CustomerPayBillOnline",
      AMOUNT: 100,
      PHONE_NUMBER: "254........",
      CALLBACK_URL: "https://example.com/callback",
      // other parameters...
    });
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  } catch (err) {
    console.error(err);
  }
}

stkPush();

Valid response:

{
  "error": false,
  "data": {
    "MerchantRequestID": "6e86-45dd-91ac-fd5d4178ab52286773",
    "CheckoutRequestID": "ws_CO_04022024093146733728829146",
    "ResponseCode": "0",
    "ResponseDescription": "Success. Request accepted for processing",
    "CustomerMessage": "Success. Request accepted for processing"
  }
}

STK Query

Using then/catch

// Perform STK query
mpesa
  .stk_query({
    // If any of these keys are not provided here, they will be picked from the config object by default
    BUSINESS_SHORT_CODE: 123456,
    PASS_KEY: "your_pass_key",
    id: "checkout_request_id",
    // other parameters...
  })
  .then((res) => {
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  });

Using async/await

// Perform STK query using async/await
async function stkQuery() {
  try {
    const res = await mpesa.stk_query({
      BUSINESS_SHORT_CODE: 123456,
      PASS_KEY: "your_pass_key",
      id: "checkout_request_id",
      // other parameters...
    });
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  } catch (err) {
    console.error(err);
  }
}

stkQuery();

Valid response:

{
  "error": false,
  "data": {
    "ResponseCode": "0",
    "ResponseDescription": "The service request has been accepted successsfully",
    "MerchantRequestID": "2ba8-4165-beca-292db11f9ef8316449",
    "CheckoutRequestID": "ws_CO_04022024093512587728829146",
    "ResultCode": "0",
    "ResultDesc": "The service request is processed successfully."
  }
}

URL Registration

Using then/catch

// Perform URL registration
mpesa
  .register_url({
    // If any of these keys are not provided here, they will be picked from the config object by default
    BUSINESS_SHORT_CODE: 123456,
    RESPONSE_TYPE: "Completed",
    CONFIRMATION_URL: "https://example.com/confirmation",
    VALIDATION_URL: "https://example.com/validation",
    // other parameters...
  })
  .then((res) => {
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  });

Using async/await

// Perform URL registration using async/await
async function registerURL() {
  try {
    const res = await mpesa.register_url({
      BUSINESS_SHORT_CODE: 123456,
      RESPONSE_TYPE: "Completed",
      CONFIRMATION_URL: "https://example.com/confirmation",
      VALIDATION_URL: "https://example.com/validation",
      // other parameters...
    });
    if (!res.error) {
      console.log(res.data);
    } else {
      console.error(res.data);
    }
  } catch (err) {
    console.error(err);
  }
}

registerURL();

Valid response:

{
  "error": false,
  "data": {
    "OriginatorCoversationID": "2ba8-4165-beca-292db11f9ef8316476",
    "ResponseCode": "0",
    "ResponseDescription": "Success"
  }
}

References

get the application credentials from daraja

[daraja]](https://developer.safaricom.co.ke/)

This Markdown documentation provides examples for using both then/catch and async/await patterns for each method call,