An open API service indexing awesome lists of open source software.

https://github.com/codekeyz/ng-atmbank

This repo holds source code for an Angular Wrapper around the HOSS ATM-Hotspot API (Bank Routes)
https://github.com/codekeyz/ng-atmbank

angular angular-library atm npm

Last synced: 2 months ago
JSON representation

This repo holds source code for an Angular Wrapper around the HOSS ATM-Hotspot API (Bank Routes)

Awesome Lists containing this project

README

          


ATMHotspot - Banks (Angular)


The official Angular library for the Hover Software Solutions ATMHotspot API

## Installation

```bash
npm i @codekeyz/ng-atmbank
```

## Example use:

Inside your `app.module.ts` file, add this

```typescript
import { BankModule } from '@codekeyz/ng-atmbank';
import { NgModule } from '@angular/core';

@NgModule({
declarations: [],
imports: [
BankModule.forRoot({
isDevMode: false
})
]
})
export class AppModule {}
```

You can now access `BankAuthService`, `BankService`, `BankAuthService` anywhere in your app.

```typescript
import { BankService } from '@codekeyz/ng-atmbank';
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
constructor(private dataSvc: BankService) {}

ngOnInit() {}
}
```

## Further help

Official Documentation will be available pretty soon.