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 🙏

© 2024 – Pkg Stats / Ryan Hefner

sepa

v2.0.0

Published

Create SEPA XML for business transactions

Downloads

29,654

Readme

Welcome to sepa.js

This library can be used to generate the XML structure used for SEPA payment transfers. It is currently in its early stages and mostly geared towards German batched direct debit transactions.

It will work in the browser or using node.js. To use it in the browser, just include it via script-tag and access through the SEPA variable. There are a few examples below.

You can also try the live online generator. If you are worried about account number safety, be assured that everything is calculated client side. Check the source code if you don't trust me.

If you have extended sepa.js for a different purpose, please contribute the code either via email or ideally as a pull request. If you are missing something, please create an issue.

  • Each SEPA document contains exactly one group header, accessible via the grpHdr property.
  • You can add multiple paymentInfo blocks to a document, i.e one per sequenceType (FRST/RCUR)
  • A payment info block can contain multiple transactions.

Validating an IBAN or Creditor ID

You can use sepa.js to validate IBAN and Creditor ID numbers or calculate their checksum. Here is an example:

var SEPA = require("sepa");

// Validating this IBAN returns true.
SEPA.validateIBAN("DE40987654329876543210");

// Passing this IBAN with "00" as the checksum returns the
// IBAN with the correct checksum, "DE87123456781234567890".
SEPA.checksumIBAN("DE00123456781234567890");

// Validating this Creditor ID returns true.
SEPA.validateCreditorID("DE98ZZZ09999999999");

// Passing this Creditor ID with "00" as the checksum returns the
// Creditor ID with the correct checksum, "DE98ZZZ09999999999".
SEPA.checksumCreditorID("DE00ZZZ09999999999");

Creating an XML DirectDebit Document

The main use case for sepa.js is creating an XML Document based on the EBICS Specification. Here is a simple node.js example. If you want to use the browser instead, just omit the first line and include via script-tag or module loader instead.

var SEPA = require("sepa");

var doc = new SEPA.Document('pain.008.001.08');
doc.grpHdr.id = "XMPL.20140201.TR0";
doc.grpHdr.created = new Date();
doc.grpHdr.initiatorName = "Example LLC";

var info = doc.createPaymentInfo();
info.collectionDate = new Date();
info.creditorIBAN = "DE87123456781234567890";
info.creditorBIC = "XMPLDEM0XXX";
info.creditorName = "Example LLC";
info.creditorId = "DE98ZZZ09999999999";
info.batchBooking = true; //optional
doc.addPaymentInfo(info);

var tx = info.createTransaction();
tx.debtorName = "Example Customer";
tx.debtorIBAN = "DE40987654329876543210";
tx.debtorBIC = "CUSTDEM0XXX";
tx.mandateId = "XMPL.CUST487.2014";
tx.mandateSignatureDate = new Date("2014-02-01");
tx.amount = 50.23;
tx.currency = 'EUR'; //optional
tx.remittanceInfo = "INVOICE 54";
tx.end2endId = "XMPL.CUST487.INVOICE.54";
info.addTransaction(tx);

console.log(doc.toString());

Creating an XML Transfer Document

var SEPA = require("sepa");

var doc = new SEPA.Document('pain.001.001.09');
doc.grpHdr.id = "XMPL.20140201.TR0";
doc.grpHdr.created = new Date();
doc.grpHdr.initiatorName = "Example LLC";

var info = doc.createPaymentInfo();
info.requestedExecutionDate = new Date();
info.debtorIBAN = "DE87123456781234567890";
info.debtorBIC = "XMPLDEM0XXX";
info.debtorName = "Example LLC";
doc.addPaymentInfo(info);

var tx = info.createTransaction();
tx.creditorName = "Example Customer";
tx.creditorIBAN = "DE40987654329876543210";
tx.creditorBIC = "CUSTDEM0XXX";
tx.amount = 50.23;
tx.remittanceInfo = "INVOICE 54";
tx.end2endId = "XMPL.CUST487.INVOICE.54";
info.addTransaction(tx);

console.log(doc.toString());

XML Result

<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:pain.008.001.08 pain.008.001.08.xsd"
    xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.001.08">
    <CstmrDrctDbtInitn>
        <GrpHdr>
            <MsgId>XMPL.20140201.TR0</MsgId>
            <CreDtTm>2024-07-05T11:44:23</CreDtTm>
            <NbOfTxs>1</NbOfTxs>
            <CtrlSum>50.23</CtrlSum>
            <InitgPty>
                <Nm>Example LLC</Nm>
            </InitgPty>
        </GrpHdr>
        <PmtInf>
            <PmtInfId>XMPL.20140201.TR0.0</PmtInfId>
            <PmtMtd>DD</PmtMtd>
            <BtchBookg>true</BtchBookg>
            <NbOfTxs>1</NbOfTxs>
            <CtrlSum>50.23</CtrlSum>
            <PmtTpInf>
                <SvcLvl>
                    <Cd>SEPA</Cd>
                </SvcLvl>
                <LclInstrm>
                    <Cd>CORE</Cd>
                </LclInstrm>
                <SeqTp>FRST</SeqTp>
            </PmtTpInf>
            <ReqdColltnDt>2024-07-05</ReqdColltnDt>
            <Cdtr>
                <Nm>Example LLC</Nm>
                <Id>
                    <PrvtId>
                        <Othr>
                            <Id>DE98ZZZ09999999999</Id>
                        </Othr>
                    </PrvtId>
                </Id>
            </Cdtr>
            <CdtrAcct>
                <Id>
                    <IBAN>DE87123456781234567890</IBAN>
                </Id>
            </CdtrAcct>
            <CdtrAgt>
                <FinInstnId>
                    <BICFI>XMPLDEM0XXX</BICFI>
                </FinInstnId>
            </CdtrAgt>
            <ChrgBr>SLEV</ChrgBr>
            <CdtrSchmeId>
                <Id>
                    <PrvtId>
                        <Othr>
                            <Id>DE98ZZZ09999999999</Id>
                            <SchmeNm>
                                <Prtry>SEPA</Prtry>
                            </SchmeNm>
                        </Othr>
                    </PrvtId>
                </Id>
            </CdtrSchmeId>
            <DrctDbtTxInf>
                <PmtId>
                    <InstrId>XMPL.20140201.TR0.0.0</InstrId>
                    <EndToEndId>XMPL.CUST487.INVOICE.54</EndToEndId>
                </PmtId>
                <InstdAmt Ccy="EUR">50.23</InstdAmt>
                <DrctDbtTx>
                    <MndtRltdInf>
                        <MndtId>XMPL.CUST487.2014</MndtId>
                        <DtOfSgntr>2014-02-01</DtOfSgntr>
                        <AmdmntInd>false</AmdmntInd>
                    </MndtRltdInf>
                </DrctDbtTx>
                <DbtrAgt>
                    <FinInstnId>
                        <BICFI>CUSTDEM0XXX</BICFI>
                    </FinInstnId>
                </DbtrAgt>
                <Dbtr>
                    <Nm>Example Customer</Nm>
                </Dbtr>
                <DbtrAcct>
                    <Id>
                        <IBAN>DE40987654329876543210</IBAN>
                    </Id>
                </DbtrAcct>
                <RmtInf>
                    <Ustrd>INVOICE 54</Ustrd>
                </RmtInf>
            </DrctDbtTxInf>
        </PmtInf>
    </CstmrDrctDbtInitn>
</Document>