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

@cruglobal/cru-payments

v1.2.4

Published

Library for validating and encrypting credit card and bank account info

Downloads

78

Readme

Cru Payments

Build Status codecov

Breaking changes in v1.2.3

@cruglobal/cru-payments is the new version of cru-payments.

You will now need to import @cruglobal/cru-payments as a wildcard.

import * as cruPayments from '@cruglobal/cru-payments/dist/...';

instead of

import cruPayments from 'cru-payments/dist/...';

All other settings are the same.

Importing

Import package

Import using yarn add @cruglobal/cru-payments or npm install @cruglobal/cru-payments --save

Note: If you only need to accept one type of payment, use one of the specific builds:

  • Use dist/cru-payments.js for credit cards and bank accounts
  • Use dist/cru-payments-ba.js for bank accounts only
  • Use dist/cru-payments-cc.js for credit cards only

Use without a module loader

  1. Add node_modules/@cruglobal/cru-payments/dist/cru-payments.js to a script tag in your app. You may have to move the file somewhere else for it to be publicly accessible.
  2. Use the global variable cruPayments

Use with a module loader

  1. import * as cruPayments from '@cruglobal/cru-payments/dist/cru-payments';

Use with Internet Explorer

Credit card payments do not work in IE 9 or below Bank account payments do not work in IE 8 or below

Build and use locally

  1. yarn or npm install
  2. yarn run build or npm run build
  3. Use dist/cru-payments.js in your app

Example

With observable

import * as cruPayments from '@cruglobal/cru-payments/dist/cru-payments';

cruPayments.creditCard.init('production', '00000000000000', '00000000000000000000');
cruPayments.creditCard.encrypt('4111111111111111', '123', '03', '2020')
    .subscribe(tokenObj => {
        console.log({
            tokenizedCardNumber: tokenObj.tsepToken,
            lastFourDigits: tokenObj.maskedCardNumber,
            expirationDate: tokenObj.expirationDate,
            cvv: tokenObj.cvv2,
            cardType: tokenObj.cardType,
            transactionId: tokenObj.transactionID,
        });
    }, error => {
        console.log('Error tokenizing credit card', error);
    });

Converting to promise

import * as cruPayments from '@cruglobal/cru-payments/dist/cru-payments';

cruPayments.creditCard.init('production', '00000000000000', '00000000000000000000');
cruPayments.creditCard.encrypt('4111111111111111', '123', '03', '2020')
    .toPromise() // Relies on browser's native promise implementation by default. Will throw error on older browsers.
    .then(tokenObj => {
        console.log({
            tokenizedCardNumber: tokenObj.tsepToken,
            lastFourDigits: tokenObj.maskedCardNumber,
            expirationDate: tokenObj.expirationDate,
            cvv: tokenObj.cvv2,
            cardType: tokenObj.cardType,
            transactionId: tokenObj.transactionID,
        });
    }, error => {
        console.log('Error tokenizing credit card', error);
    });

You can pass a valid ES2015 compatible promise to .toPromise(PromiseConstructor) to prevent it from failing on browsers without promise implementations. Passing Angular's $q works. Providing a polyfill would also work. See: http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-toPromise

API Usage

Credit Card

Note: Use cruPayments instead of cruPayments.creditCard if using cru-payments-cc.js

cruPayments.creditCard.init(environment, deviceId, manifest)

Must be called at least once before calling cruPayments.creditCard.encrypt. If environment is 'production', it will grab the code from TSYS's production servers, otherwise it will use TSYS's staging servers.

cruPayments.creditCard.validate(cardNumber, cvv, month, year)

Returns true if card number, cvv, and expiry date are all valid

cruPayments.creditCard.encrypt(cardNumber, cvv, month, year)

Returns an Observable of that emits the results of the tokenization. If a Promise is desired, call .toPromise() on this Observable. cruPayments.creditCard.init must have been called first.

Card Number

cruPayments.creditCard.card.validate.minLength(cardNumber)

Returns true if card number has a valid min length

cruPayments.creditCard.card.validate.maxLength(cardNumber)

Returns true if card number has a valid max length

cruPayments.creditCard.card.validate.knownType(cardNumber)

Returns true if card type is known by the system

cruPayments.creditCard.card.validate.typeLength(cardNumber)

Returns true if card type is known by the system and the length is valid for that type

cruPayments.creditCard.card.validate.checksum(cardNumber)

Returns true if the card number's checksum is valid

cruPayments.creditCard.card.validate.all(cardNumber)

Returns true if all of the above card validators return true

cruPayments.creditCard.card.errors(cardNumber)

Returns an array of error message strings. For each invalid validator above (excluding all), a string containing an error message for that validator will be added in the above order.

cruPayments.creditCard.card.info.type(cardNumber)

Returns 'Visa', 'MasterCard', 'American Express', 'Discover', 'Diners Club', or '' (if the type is unknown)

cruPayments.creditCard.card.info.expectedLengthForType(cardNumber)

Returns an array containing the lengths allowed for the detected type. Could be useful in creating error messages.

Card CVV

cruPayments.creditCard.cvv.validate.minLength(cvv)

Returns true if card cvv has a valid min length

cruPayments.creditCard.cvv.validate.maxLength(cvv)

Returns true if card cvv has a valid max length

cruPayments.creditCard.cvv.validate.cardTypeLength(cvv, cardType)

Returns true if card cvv length matches the allowed lengths for the given card type

cruPayments.creditCard.cvv.validate.all(cvv, cardNumber)

Returns true if all of the above cvv validators return true

cruPayments.creditCard.cvv.errors(cvv, cardType)

Returns an array of error message strings. For each invalid validator above (excluding all), a string containing an error message for that validator will be added in the above order.

Card Expiry Date

cruPayments.creditCard.expiryDate.validate.month(month, year)

Returns true if the expiration date is the current month or in the future

cruPayments.creditCard.expiryDate.validate.year(year)

Returns true if the year is not in the past

cruPayments.creditCard.expiryDate.validate.all(month, year)

Alias for cruPayments.creditCard.expiryDate.validate.month

cruPayments.creditCard.expiryDate.errors(month, year)

Returns an array of error message strings. For each invalid validator above, a string containing an error message for that validator will be added in the above order.

Bank Account

Note: Use cruPayments instead of cruPayments.bankAccount if using cru-payments-ba.js

cruPayments.bankAccount.init(environment, backupKey)

Must be called at least once before calling cruPayments.bankAccount.encrypt. If environment is 'production', it will grab the encryption key from CCP's production servers, otherwise it will use CCP's staging servers. If the backupKey is provided, it will be used when fetching a key from CCP's servers fails.

cruPayments.bankAccount.validate(routingNumber, accountNumber)

Returns true if routing number and account number are valid

cruPayments.bankAccount.encrypt(accountNumber)

Returns an Observable of that emits the results of the account number encryption. If a Promise is desired, call .toPromise() on this Observable. cruPayments.bankAccount.init must have been called first.

Routing Number

cruPayments.bankAccount.routingNumber.validate.length(routingNumber)

Returns true if routing number has a valid length

cruPayments.bankAccount.routingNumber.validate.checksum(routingNumber)

Returns true if routing number has a valid checksum

cruPayments.bankAccount.routingNumber.validate.all(routingNumber)

Returns true if all of the above routing number validators return true

cruPayments.bankAccount.routingNumber.errors(routingNumber)

Returns an array of error message strings. For each invalid validator above (excluding all), a string containing an error message for that validator will be added in the above order.

Account Number

cruPayments.bankAccount.accountNumber.validate.minLength(accountNumber)

Returns true if account number has a valid min length

cruPayments.bankAccount.accountNumber.validate.maxLength(accountNumber)

Returns true if account number has a valid max length

cruPayments.bankAccount.accountNumber.validate.all(accountNumber)

Returns true if all of the above account number validators return true

cruPayments.bankAccount.accountNumber.errors(accountNumber)

Returns an array of error message strings. For each invalid validator above (excluding all), a string containing an error message for that validator will be added in the above order.

Development

Installing

yarn or npm install

Start local web server

yarn run start or npm run start

Build library

yarn run build or npm run build

Lint

yarn run lint or npm run lint

Run tests

yarn run test or npm run test