2.0.0-beta.2 • Published 2 years ago

@jewell-lgtm/mt940-js v2.0.0-beta.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

mt940-js

Build Status npm npm npm Coverage Status

An isomorphic Javascript library for working with MT940 format

Changelog

Reading

API

read(buffer, options)

  • input {Buffer|ArrayBuffer} - input buffer that contains data of mt940 file.
  • options {ReadOptions}
  • returns list of Statement.

readAsync(buffer, options)

  • input {Readable} - a stream of data, e.g. created from fs.createReadStream
  • options {Options}
  • returns Readable, emitting Statement.
Options
  • statementSplitSequence - only used in the readAsync method, splits the incoming stream based on this char sequence, processing each chunk synchronously. Default is :20:
  • getTransactionId(transaction, index) - a custom generator for transaction id. By default it's:
function getTransactionId(transaction, index) {
    return md5(JSON.strinfigy(transaction));
}

Node.js environment

import * as mt940 from 'mt940-js';
import fs from 'fs';

const stream = mt940.readStream(fs.createReadStream('mt940.sta'));
stream.on('data', (statement: Statement) => console.log(statement));
stream.on('error', (e) => console.error(e));
stream.on('end', () => console.log('finished parsing'));

// or

const stream = mt940.readStream(fs.createReadStream('mt940.sta', {encoding: 'utf-8'}));
for await (const statement of stream) {
    console.log(statement);
}

Browser environment

Reading a local file

<input type="file" onchange="onFileSelected(this.files[0])" />
import * as mt940 from 'mt940-js';

function onFileSelected(file) {
    const reader = new FileReader();

    reader.onload = () => {
        const statements = mt940.read(reader.result);
        console.log(statements);
    };
    reader.readAsArrayBuffer(file);
}

Reading a remote file

import * as mt940 from 'mt940-js';

fetch('/url/to/mt940/file')
    .then((response) => response.arrayBuffer())
    .then((buffer) => mt940.read(buffer))
    .then((statements) => /* a list of the Statements */)

Writing

Coming soon

Supported MT940 tags

  • :20:
  • :21:
  • :25:
  • :28(C):
  • :60(M|F):
  • :61:
  • :62(M|F):
  • :64:
  • :65:
  • :86:

Related links

JS

mt940 specification