Installation
The recommended way of installing Components is to install it with a package manager.
If you use JavaScript without a build step and this is not possible, you can include our libraries in your HTML <head> tag.
Install the @talkjs/web-components package:
1npm install @talkjs/web-components
Import these packages into the component where you have your chat UI:
1import '@talkjs/web-components';2import '@talkjs/web-components/default.css';
We suggest installing Components with a package manager, but if this is not possible you can include our libraries as scripts.
You can use one of our pre-built themes, and edit the CSS if you want to make changes to the styling. If you want to customize the behavior of the components, you will need to use a package manager.
Include the components and default theme's CSS in the <head> tag of the HTML page where you want to add your chat UI:
1<link2 rel="stylesheet"4/>5<script7 async8></script>