https://github.com/ciscodevnet/webex-contact-center-widget-starter
WebEx Contact Center widget starter
https://github.com/ciscodevnet/webex-contact-center-widget-starter
Last synced: 9 months ago
JSON representation
WebEx Contact Center widget starter
- Host: GitHub
- URL: https://github.com/ciscodevnet/webex-contact-center-widget-starter
- Owner: CiscoDevNet
- License: mit
- Created: 2020-09-26T00:53:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-05T05:03:58.000Z (11 months ago)
- Last Synced: 2025-03-31T07:09:22.021Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 24.8 MB
- Stars: 26
- Watchers: 28
- Forks: 48
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Webex Contact Center Widget Starter
This repository is designed to speed up the initial set up for Agent and or Supervisor Desktop widget development. Feel free to treat this as a boilerplate project, that can be forked as a base for your Webex Contact Center widget or simply as a reference material.
We aim at covering various scenarios, for when your development team is leaning towards
* [**React**](https://github.com/CiscoDevNet/webex-contact-center-widget-starter/tree/master/react) [](https://shields.io/), or
* [**Angular**](https://github.com/CiscoDevNet/webex-contact-center-widget-starter/tree/master/angular) [](https://shields.io/), or is willing to explore the pure
* [**Web Component**](https://github.com/CiscoDevNet/webex-contact-center-widget-starter/tree/master/lit-element) [](https://shields.io/) approach (with some help from *Lit Element* and the *Polymer* project).
Dive into the respective folder based on your tech stack preference to get started.
## To integrate JS SDK
To integrate contact center desktop sdk in the starter-kit-widget . Follow the below steps.
- `npm install @wxcc-desktop/sdk --save`
or
`yarn add @wxcc-desktop/sdk`
- Once you have installed the package in your project, include it in the appropriate component file following the ES6 import pattern:
`import {Desktop} from "@wxcc-desktop/sdk"`
## Reference links for more details
- [Desktop JS SDK Official](https://developer.webex-cx.com/documentation/guides/desktop)
- [Desktop JS API samples](https://github.com/CiscoDevNet/webex-contact-center-api-samples)
- [Product Overview and Documentation](https://www.cisco.com/c/en/us/support/customer-collaboration/webex-contact-center/series.html)
- [Other useful resources](https://ciscodevnet.github.io/webex-contact-center-widget-starter/?path=/story/introduction--page)