https://github.com/sparkouttech/ng-pikchat-client
https://github.com/sparkouttech/ng-pikchat-client
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sparkouttech/ng-pikchat-client
- Owner: sparkouttech
- License: mit
- Created: 2021-11-19T09:57:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-06T08:22:11.000Z (over 4 years ago)
- Last Synced: 2025-07-09T14:53:49.666Z (10 months ago)
- Language: TypeScript
- Size: 553 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NgPikchatClient
## Dependencies
Latest version available for each version of Angular
| ng-pikchat-client | Angular |
| ----------------- | ----------- |
| current | >= 10.x |
## Install
```bash
npm install ng-pikchat-client --save
```
**step 1:** add NgPikchatClientModule to app NgModule
```typescript
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
```typescript
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](https://www.pikchat.co)
## License
[MIT](/LICENSE)