https://github.com/karethadeepak/angular-tawk
This is NPM for the integration of Tawk into the Angular project.
https://github.com/karethadeepak/angular-tawk
angular angular-cli angular-component angular-tawk chat customer-chat customer-chat-plugin tawk tawkto
Last synced: 5 months ago
JSON representation
This is NPM for the integration of Tawk into the Angular project.
- Host: GitHub
- URL: https://github.com/karethadeepak/angular-tawk
- Owner: karethadeepak
- Created: 2020-09-26T06:48:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-28T04:25:28.000Z (over 4 years ago)
- Last Synced: 2024-04-27T01:03:34.126Z (about 1 year ago)
- Topics: angular, angular-cli, angular-component, angular-tawk, chat, customer-chat, customer-chat-plugin, tawk, tawkto
- Homepage:
- Size: 27.3 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular-tawk
## Installation
`npm install angular-tawk`## Usage
An Angular component to integrate Tawk. Tested with Angular 7.Including "AngularTawkComponent" in "exports" or "imports", depending on the setup of your project
### Module
```
import { AngularTawkComponent } from 'angular-tawk';@NgModule({
exports: [
AngularTawkComponent
]
})
export class AppModule { }
```### Component
``````
The `id` parameter is for the string value identifying your account with Tawk. It is a hexadecimal string, 22 characters long, found in the code Tawk suggests you embed during the setup process.
The `isVisibleOnMobile` option is for tawk widgets to be displayed in the web and not in mobile.
`isVisibleOnMobile` value = "yes" or "no".
This widget always visible on web.