New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ibanity

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

ibanity

Ibanity API connector

unpublished
latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

Ibanity NodeJs Library

This non-official Ibanity NodeJs Library provides convenient wrappers around the Ibanity API. The object attributes are dynamically defined based on the API response, supporting minor API changes seamlessly.

Documentation

The NodeJs wrapper follows the same standard as the officiel Rubby wrapper available on their web site at: Ruby API docs.

Installation

npm install ibanity

Requirements

  • NodeJs 7.0+.

Usage

  • Usage

    Ibanity must be configured using the details of your application on the Ibanity developer portal.

    const Ibanity = require('ibanity');
    
    const ibanity = new Ibanity({
        cert:           'path to cert or certificate buffer',
        key:            'path to private key or key buffer',
        passphrase:     '....'
    });
    
    async function main() {
    
        //const res = await ibanity.get('financial-institutions');
        //const res = await ibanity.SandboxFinancialInstitution.delete('c2787187-8d97-46e0-a261-96b55413da99')
        const res = await ibanity.SandboxFinancialInstitution.create({
            name: "test sandbox"
        })
    
        console.log(res);
    }
    
    main().catch(console.error);
    

Keywords

iBanity

FAQs

Package last updated on 19 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts