17.0.0 • Published 3 months ago

@babili.io/angular v17.0.0

Weekly downloads
50
License
-
Repository
github
Last release
3 months ago

Babili Angular

Typescript implementation to use Babili in an Angular app. This implementation works with RxJS 7+ and Angular 7+.

Usage

Install (with npm)

npm install --save @babili.io/angular

Enable Babili

In your Angular root module:

  • import BabiliModule.forRoot();
  • when starting your application, call BabiliConfiguration(apiUrl: string, socketUrl: string, aliveIntervalInMs?: number), BabiliConfiguration is injectable
import { Babili } from "@babili.io/angular";

@NgModule({
  declarations: [ 
    // ...
  ],
  imports: [
    // ...
    BabiliModule.forRoot()
    // ...
  ],
  entryComponents: [
    // ...
  ],
  providers: [
    // ...
  ]
})
export class AppModule {}
import { BabiliBootstraper } from "@babili.io/angular";


@Component({})
export class App {

  constructor(babili: BabiliBootstraper) {
    babili.init("https://api.your-babili-service.io:443", "https://pusher.your-babili-service.io:443", 5000);
  }
}

Then, you can inject babili services in every module that imports BabiliModule

@NgModule({
  imports: [
    // ...
    Babili.BabiliModule
  ]
 })
export class SubModule {
}

Examples

  • Inject MeService:
import { Injectable } from "@angular/core";
import { Babili } from "@babili.io/angular";

@Injectable()
export class AnyService {
  constructor(private babiliMeService: MeService) {}

  // ...
}
  • Setup Babili and connect a user
import { Observable } from "rxjs";

// ...
connect(babiliToken: string): Observable<Babili.Me> {
  this.babiliMeService.setup(babiliToken);
  return this.babiliMeService.me();
}
  • Disconnect
disconnect() {
  this.babiliMeService.clear();
}

Development

Build

  • Build: npm run build
17.0.0

3 months ago

16.0.0

1 year ago

1.3.0

1 year ago

1.2.0

2 years ago

1.2.6

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.6

2 years ago

1.1.4

2 years ago

1.1.1

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.0

3 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.14.2

5 years ago

0.14.1

5 years ago

0.14.0

5 years ago

0.13.6

6 years ago

0.13.5

6 years ago

0.13.4

6 years ago

0.13.3

6 years ago

0.13.2

6 years ago

0.13.1

6 years ago

0.13.0

6 years ago