0.0.13 • Published 6 years ago

ionic-brique-chatbot v0.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

BRIQUE Chatbot IONIC2+/Angular2+ interface

This is template for plugging in the BRIQUE Chatbot into your mobile application.

For more details on what BRIQUE Chatbot is, check the following link:

https://brique.in/products/brique-chatbot/

How to integrate

Within your app, install this package by firing this command at the root folder of your app within command prompt

npm install ionic-brique-chatbot

How to plugin BRIQUE Chatbot in your Ionic 2 app

This is your app.module.ts.

import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';

// Import your module
import { BRIQUEChatbot } from 'ionic-brique-chatbot';

@NgModule({
  declarations: [
    MyApp,
    HomePage
  ],
  imports: [
    IonicModule.forRoot(MyApp),

    BRIQUEChatbot
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage
  ],
  providers: []
})
export class AppModule {}