ionic-brique-chatbot
v0.0.13
Published
Ionic module for integration with BRIQUE Chatbot
Downloads
1
Readme
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 {}