npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

ebics-client

v5.0.0

Published

Node.js ISO 20022 Compliant EBICS Client

Readme

Pure Node.js (>= 16) implementation of EBICS (Electronic Banking Internet Communication).

The client is aimed to be 100% ISO 20022 compliant, and supports the complete initializations process (INI, HIA, HPB orders) and HTML letter generation.

Usage

For examples on how to use this library, take a look at the examples.

A note on recent Node.js versions

The latest Node.js versions don't support RSA_PKCS1_PADDING for private decryption for security reasons, throwing an error like TypeError: RSA_PKCS1_PADDING is no longer supported for private decryption, this can be reverted with --security-revert=CVE-2023-46809.

EBICS requires this mode, so in order for this library to work, add the following parameter when starting Node.js: --security-revert=CVE-2023-46809

Initialization

  1. Create a configuration (see example configs) with the EBICS credentials you received from your bank and name it in this schema: config.<environment>.<bank>[.<entity>].json (the entity is optional).

    • The fields url, partnerId, userId, hostId are provided by your bank.
    • The passphrase is used to encrypt the keys file, which will be stored at the storageLocation.
    • The bankName and bankShortName are used internally for creating files and identifying the bank to you.
    • The languageCode is used when creating the Initialization Letter and can be either de, en, or fr.
    • You can chose any environment, bank and, optionally, entity name. Entities are useful if you have multiple EBICS users for the same bank account.
  2. Run node examples/initialize.js <environment> <bank> [entity] to generate your key pair and perform the INI and HIA orders (ie. send the public keys to your bank)
    The generated keys are stored in the file specified in your config and encrypted with the specified passphrase.

  3. Run node examples/bankLetter.js <environment> <bank> [entity] to generate the Initialization Letter

  4. Print the letter, sign it and send it to your bank. Wait for them to activate your EBICS account.

  5. Download the bank keys by running node examples/save-bank-keys.js <environment> <bank> [entity]

If all these steps were executed successfully, you can now do all things EBICS, like fetching bank statements by running node examples/send-sta-order.js <environment> <bank> [entity], or actually use this library in your custom banking applications.

Supported Banks

The client is currently tested and verified to work with the following banks:

Inspiration

The basic concept of this library was inspired by the EPICS library from the Railslove Team.

Copyright

Copyright: Dimitar Nanov, 2019-2022.
Licensed under the MIT license.