0.1.3 • Published 4 years ago

@promptapi/bin-checker-pkg v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Node npm version

Prompt API - BIN Checker - Node Package

@promptapi/bin-checker-pkg is a simple JavaScript wrapper for bincheck-api.

Requirements

  1. You need to signup for Prompt API
  2. You need to subscribe bincheck-api, test drive is free!!!
  3. You need to set PROMPTAPI_TOKEN environment variable after subscription.

then;

$ npm install @promptapi/bin-checker-pkg

or, install from GitHub registry;

$ npm install @promptapi/bin-checker-pkg@0.1.3

Example Usage

const promptapi = require('@promptapi/bin-checker-pkg')

promptapi.binChecker('370244').then(result => {
  if(result.error){
    console.log(result.error)
  } else {
    console.log(result.bank_name)
    console.log(result.country)
    console.log(result.url)
    console.log(result.type)
    console.log(result.scheme)
    console.log(result.bin)
  }
})

Result:

Banesco
Venezuela (bolivarian Republic Of)
www.banesco.com
Credit
American Express
370244

If you receive an error, result will contain error as string.


Development

All you need is node and npm...


License

This project is licensed under MIT


Contributer(s)


Contribute

All PR’s are welcome!

  1. fork (https://github.com/promptapi/bin-checker-pkg/fork)
  2. Create your branch (git checkout -b my-feature)
  3. commit yours (git commit -am 'Add awesome features...')
  4. push your branch (git push origin my-feature)
  5. Than create a new Pull Request!

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.