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 v8.x+ 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 v8.x+ installed.
npm install- Modify files
If you want to change
APP_ID, changeAPP_IDin./src/js/const.jsto 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 buildThe
npm startcommand containsnpm run build. Check the scripts part of the package.json file.