Skip to content

Latest commit

 

History

History
102 lines (82 loc) · 1.83 KB

README.md

File metadata and controls

102 lines (82 loc) · 1.83 KB

NgPikchatClient

Dependencies

Latest version available for each version of Angular

ng-pikchat-client Angular
current >= 10.x

Install

npm install ng-pikchat-client --save

step 1: add NgPikchatClientModule to app NgModule

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';

import { NgPikchatClientModule } from "ng-pikchat-client";

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    NgPikchatClientModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Use

import { NgPikchatClientService } from "ng-pikchat-client";

@Component({...})
export class YourComponent {
  constructor(private pikchatClient: NgPikchatClientService) {}

  testConnection() {
    console.log(this.pikchatClient);
  }
}
Company Contact Country
Alfreds Futterkiste Maria Anders Germany
Centro comercial Moctezuma Francisco Chang Mexico
Ernst Handel Roland Mendel Austria
Island Trading Helen Bennett UK
Laughing Bacchus Winecellars Yoshi Tannamuri Canada
Magazzini Alimentari Riuniti Giovanni Rovelli Italy

This library was developed by https://www.pikchat.co

License

MIT