Sonyque / ib4b

The Direct Credit file exporting tool for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IB4B afi/txt file generation Node.js

Generate IB4B .afi/.txt Files from Node.js 🎇 Exports transaction files into Internet Banking for Business (IB4B).

Implemented according to general BNZ documentation.

Basic usage:

const ib4b = new IB4B({
  account: '0201000123456000',
});

const transaction = {
  transactionCode: IB4B.CREDIT,
  account: '0200123456789000',
  amount: '12.50',
  accountTitle: 'The Electrician Corp',
  reference: 'AZ100364C',
  remitter: 'ACME CORPORATION',
};

const file = ib4b.generate([transaction]);

About

The Direct Credit file exporting tool for Node.js

License:Apache License 2.0


Languages

Language:JavaScript 100.0%