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)
- Host: GitHub
- URL: https://github.com/codekeyz/ng-atmbank
- Owner: codekeyz
- Created: 2019-04-21T20:38:24.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T17:32:05.000Z (almost 7 years ago)
- Last Synced: 2025-02-12T22:37:32.030Z (11 months ago)
- Topics: angular, angular-library, atm, npm
- Language: TypeScript
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.