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

cardbinrd

v1.0.0

Published

CardBinRD es una librería de JavaScript diseñada para gestionar y verificar datos BIN/IIN de tarjetas de crédito emitidas en la República Dominicana. Esta librería proporciona una serie de herramientas y utilidades que permiten a los desarrolladores obten

Downloads

18

Readme

CardBinRD

CardBinRD es una librería de JavaScript diseñada para gestionar y verificar datos BIN/IIN de tarjetas de crédito emitidas en la República Dominicana. Esta librería proporciona una serie de herramientas y utilidades que permiten a los desarrolladores obtener información detallada sobre las tarjetas de crédito

NPM Version

¿Qué es el número BIN?

Características Principales

Obtención de Datos BIN/IIN: Accede a información detallada sobre los números de identificación bancaria (BIN/IIN) específicos de la República Dominicana, incluyendo el banco emisor, el tipo de tarjeta y más. Constando este de 435 BIN/IIN,

Funciones Disponobles

getBIN(cardNumber: String): String

Devuelve el BIN/IIN el cardNumber proporcionado

let BIN = getBIN("---223528-0td3l;;''")
console.log(BIN) // Resultado : 223528

getCardDetails(Bin: String): object

Devuelve los Datos de la tarjeta para BIN/IIN Proporcionado

let CardIssuer = getCardIssuer("223528")
console.log(CardIssuer) 
// Resultado : {"issuer": "BankReservas", "cardType": "DEBIT","cardLevel": "STANDARD", "provider": "MasterCard"}

getCardIssuer(Bin: String): String

Devuelve el Emisor de la tarjeta para BIN/IIN Proporcionado

let CardIssuer = getCardIssuer("223528")
console.log(CardIssuer) // Resultado : BankReservas

getCardTypebyBIN(Bin: String): String

Devuelve el Tipo de la tarjeta para BIN/IIN Proporcionado

let CardType = getCardTypebyBIN("223528")
console.log(CardLevel) // Resultado : DEBIT

getCardLevel(Bin: String): String

Devuelve la Clasificacion de la tarjeta para BIN/IIN Proporcionado

let CardLevel = getCardLevel("223528")
console.log(CardLevel) // Resultado : STANDARD

getAllIssuers(): String[]

listado de los Emisores de Tarjetas de Dominicanos

let ListBank = getAllIssuers()
console.log(ListBank) // Resultado : ['Asociacion Popular (APAP)', 'QIK Banco Digital'...]

searchByIssuer(issuer: : String) object[]

listado de los Emisores de Tarjetas de Dominicanos

let ListBank = searchByIssuer("BankReservas")
console.log(ListBank) 
// Resultado : [{"BIN": "223528", "cardType": "DEBIT","cardLevel": "STANDARD", "provider": "MasterCard"},...]

isBINValid(Bin: String): Booleam

Devuelve si el BIN/IIN existe en el Listado

let isBIN = isBINValid("0099")
console.log(isBIN) // Resultado: false

Lista de bancos

Bibliografia