Skip to content

ckosmowski/openfin-ts

 
 

Repository files navigation

openfin-ts

Build Status Coverage Status

Typescript compatible fints implementation

Install

//npm
npm install --save openfin-ts
//yarn
yarn add openfin-ts

Example

import { FinTSClient } from 'openfin-ts';

const client = new FinTSClient("12345",
    "http://testbank.com/hbci",
    "customerId",
    "1234pin");

try {
  await client.connect();
  const transactions = await client.getTransactions(client.konten[0].sepaData, null, null);
  transactions.forEach(transaction => {
        //Do things with transactions
  });
  await client.close();
} catch (err) {
  //handle errors
}

For more examples see the tests in /test

About

FinTS/HBCI Javascript Client

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • TypeScript 53.4%
  • JavaScript 46.5%
  • Shell 0.1%