This is full screen chat sample like Slack using the SendBird SDK for desktop browsers.
You can try out a live demo from the link here.
If you want to legacy basic sample used jQuery, you can find the Legacy tag.
- Install packages
Require that you have Node installed.
npm install- Run
npm startIf you want to put some changes into the sample, you should build it using webpack.
- Install packages
Require that you have Node installed.
npm install- Modify files
If you want to change
APP_ID, changeAPP_IDin const.js to the otherAPP_IDyou want.
You can test the sample with local server by running the following command.
npm run start:dev- Build the sample
When the modification is complete, you'll need to bundle the file using
webpack. The bundled files are created in thedistfolder.
Please checkwebpack.config.jsfor settings.
npm run build