taiwan-bank-data
v1.6.320241130
Published
簡單的台灣銀行代碼資料
Downloads
185
Readme
Taiwan Bank Code
- ㄧ個簡單的 台灣銀行代碼列表 及 支行代碼列表 package。
- 資料來源為 財金資訊股份有限公司 的 開放資料。
- 版本號的最末碼為 patch 版本 及 數據更新日期 的組合,例如
1.2.1020191024
代表:
台灣銀行代碼列表
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
})