New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngx-iban

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-iban

Angular 2+ directive for validating IBAN input fields.

  • 2.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.8K
decreased by-28.38%
Maintainers
1
Weekly downloads
 
Created
Source

ngx-iban - Angular directive for validating IBAN input fields.

npm version Build Status Coverage Status dependency Status devDependency Status

Demo

View all the directives in action at https://mmjmanders.github.io/ngx-iban

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install ngx-iban via:

npm install --save ngx-iban

SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for ngx-iban:

map: {
  'ngx-iban': 'node_modules/ngx-iban/bundles/ngx-iban.umd.js',
}

Once installed you need to import the main module:

import { IbanModule } from 'ngx-iban';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice IbanModule.forRoot()):

import { IbanModule } from 'ngx-iban';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [IbanModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import IbanModule :

import { IbanModule } from 'ngx-iban';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [IbanModule, ...], 
})
export class OtherModule {
}

Usage

<input type="text" ngxIban [(ngModel)]="iban">

License

Copyright (c) 2017 Mark Manders. Licensed under the MIT License (MIT)

Keywords

FAQs

Package last updated on 08 Dec 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc