Skip to content

Latest commit

 

History

History
executable file
·
38 lines (27 loc) · 1.25 KB

README.md

File metadata and controls

executable file
·
38 lines (27 loc) · 1.25 KB

WEB CHAT APP WITH REACTJS EXAMPLES

This example shows how to build a group chat with Javascript and React.

SCREENSHOTS

Jump straight into the code or read the accompanying step-by-step guide here on our blog.

Technology

This demo uses:

  • CometChat Pro JS SDK
  • Javascript
  • ReactJS

Running the demo locally

  • Download the repository here or by running git clone https://github.com/samie820/react-cometchat-app.git
  • Run the command npm install or yarn
  • Add your appId, GUID and apiKey to /src/config.js like below:
export default {
  appId: "", //Enter your App ID
  apiKey: "", //Enter your API KEY
  GUID: "", // Enter your group UID
};
  • Then run npm start or yarn start

Useful links