https://github.com/channelizeio/channelize-javascript-sdk
Open-source JavaScript SDK to enable Real-time Chat.
https://github.com/channelizeio/channelize-javascript-sdk
chat-application chatapp chatsdk communication communications in-app-communication javascript javascript-sdk real-time real-time-chat real-time-message realtime
Last synced: 3 months ago
JSON representation
Open-source JavaScript SDK to enable Real-time Chat.
- Host: GitHub
- URL: https://github.com/channelizeio/channelize-javascript-sdk
- Owner: ChannelizeIO
- License: other
- Created: 2020-05-15T12:33:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T05:42:19.000Z (over 4 years ago)
- Last Synced: 2025-09-07T15:30:30.773Z (4 months ago)
- Topics: chat-application, chatapp, chatsdk, communication, communications, in-app-communication, javascript, javascript-sdk, real-time, real-time-chat, real-time-message, realtime
- Homepage: https://channelize.io/
- Size: 2.21 MB
- Stars: 22
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Channelize JavaScript SDK
Channelize.io allows you to embed user-to-user chat into your application by API and SDKs in the easiest way.
Signup for Channelize.io 30 Days Free Trial at https://channelize.io/free_trial/request
## Installation
```bash
npm install channelize-chat
```
## Documentation
You can find out JavaScript SDK documentation [here](https://docs.channelize.io/javascript-sdk-introduction-overview/).
## How to use
First you need to install channelize-chat via NPM. Then you can import like this:
```javascript
import { Channelize } from 'channelize-chat';
var channelize = new Channelize.client({publicKey: YOUR_PUBLIC_KEY});
// do something...
```