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

bkm-express-react-native-sdk

v1.0.1

Published

BKM Express React Native SDK

Downloads

6

Readme

BKM EXPRESS REACT NATIVE SDK PLUGIN

NE İŞE YARAR?

BKM Express React Native SDK, kullanıcının BKMExpress ile yapacağı ödemeler için, işyeri uygulamasından çıkmadan, kart eşleme, kart değiştirme ve güvenli ödeme yapma seçeneklerini sunmaktadır.

NASIL ÇALIŞIR?

BKM Express React Native SDK paketinin kullanılabilmesi için işyerleri BKM Express entegrasyonlarını tamamlaması gerekmektedir. Daha sonra işyeri servis uygulamaları BKMExpress core servislerine bağlanarak kendilerine verilen ** TOKEN**'ı SDK tarafından sunulan methodlara parametrik olarak ileterek kart eşleştirme, değiştirme ve güvenli ödeme akışını başlatabilirler.

ORTAMLAR

Kart eşleme paketi iki farklı ortamda çalışmaktadır.

  • PROD
  • PREPROD

NOT: Entegrasyon sırasında işyerlerine verilen anahtarların sorumluluğu, işyerine aittir.

Kurulum

BKM Express React Native SDK kullanmak için sırası ile aşağıdaki adımlar izlenmelidir.

  • Kurulum için;

    npm install --save bkm-express-react-native-sdk
  • Projenin Android entegrasyonu için lütfen size sunmuş olduğumuz kullanıcı adı ve şifreyi, Android projesinde bulunan local.properties dosyasına aşağıdaki gibi ekleyiniz.

    bkm_username=<<YOUR_USERNAME>>
    bkm_password=<<YOUR_PASSWORD>>
    bkm_maven_url = http://18.208.172.191/artifactory/bexandroidsdk-release-android

NOT: Android veya iOS özelinde herhangi bir entegrasyon gerekmemektedir.

React Native Entegrasyonu

Kurulumu tamamladıktan sonra pakete ait kütüphaneyi kodunuza ekleyiniz.

import BkmExpressReactNativeSdk from "bkm-express-react-native-sdk";

Paketi PreProd ortamda kullanabilmek için aşağıdaki fonksiyonu çağırmalısınız. Aşağıdaki fonksiyonu kullanmazsanız SDK Prod ortamda çalışacaktır.

 BkmExpressReactNativeSdk.setDebugMode(true); // PreProd

Örnek Ödeme Akışı

BkmExpressReactNativeSdk.startBexPayment("Token will be given by BKM after the merchant integration",
    (posResult) => {
        console.log("Payment Success - token: " + posResult.token)
    },
    (errorId, errorMsg) => {
        console.log("Failure - errorId: " + errorId + " errorMsg: " + errorMsg)
    }
);

Örnek Kart Eşleştirme Akışı

BkmExpressReactNativeSdk.submitConsumer("Token will be given by BKM after the merchant integration",
    (first6, last2) => {
        console.log("Payment Success - first6: " + first6 + " last2: " + last2)
    },
    (errorId, errorMsg) => {
        console.log("Failure - errorId: " + errorId + " errorMsg: " + errorMsg)
    }
);

Örnek Kart Değiştirme Akışı

BkmExpressReactNativeSdk.resubmitConsumer("Ticket will be given by BKM after the merchant integration",
    (first6, last2) => {
        console.log("Payment Success - first6: " + first6 + " last2: " + last2)
    },
    (errorId, errorMsg) => {
        console.log("Failure - errorId: " + errorId + " errorMsg: " + errorMsg)
    }
);