Skip to content

sparkouttech/ng-pikchat-client

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published