taiwan-bank-data
TypeScript icon, indicating that this package has built-in type declarations

1.6.32024531 • Public • Published

Taiwan Bank Code

  • ㄧ個簡單的 台灣銀行代碼列表支行代碼列表 package。
  • 資料來源為 財金資訊股份有限公司開放資料
  • 版本號的最末碼為 patch 版本數據更新日期 的組合,例如 1.2.1020191024 代表:
    • patch 版本為 10
    • package 中的銀行資訊為 2019/10/24 時從 開放資料 中抓取的。
    • 每個月的一號會透過 CI/CD 自動發佈新版,不論 開放資料 是否更新。

台灣銀行代碼列表

import { bankList } from 'taiwan-bank-code'

const bank = bankList[0]
console.log({
  /** @type {string} */
  bankName: bank.name,
  /** @type {string} */
  bankCode: bank.code
})

支行代碼列表

import { branchList } from 'taiwan-bank-code'

const branch = branchList[0]
console.log({
  /** @type {string} */
  branchName: branch.name,
  /** @type {string} */
  branchCode: branch.code,
  /** @type {string} */
  bank: branch.bank
})

/taiwan-bank-data/

    Package Sidebar

    Install

    npm i taiwan-bank-data

    Weekly Downloads

    5

    Version

    1.6.32024531

    License

    MIT

    Unpacked Size

    2.07 kB

    Total Files

    3

    Last publish

    Collaborators

    • mawwhsu