https://github.com/naturalclar/real-time-chat-app
A real time chat app made with Next.js and Pusher
https://github.com/naturalclar/real-time-chat-app
Last synced: about 1 year ago
JSON representation
A real time chat app made with Next.js and Pusher
- Host: GitHub
- URL: https://github.com/naturalclar/real-time-chat-app
- Owner: Naturalclar
- Created: 2018-06-15T17:30:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T03:34:18.000Z (almost 8 years ago)
- Last Synced: 2025-04-14T03:34:35.060Z (over 1 year ago)
- Language: TypeScript
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Realtime Chat Application with Sentiment Analysis
A real time chat application build with [Next.js](https://nextjs.org/) and [Pusher](https://pusher.com/).
Referenced [this Medium Post](https://codeburst.io/build-a-chat-app-with-sentiment-analysis-using-next-js-c43ebf3ea643) about making the said application.
## Getting Started
### Prerequisite
- [Node.js](https://nodejs.org/)
- [yarn](https://yarnpkg.com/)(optional)
- [Pusher Account](https://pusher.com/)
### Setup
- Run `npm install` or `yarn add` to install dependencies.
- On root directoyy of your project, create a `.env` file that contains your pusher app information.
```
PUSHER_APP_ID=YOUR_APP_ID
PUSHER_APP_KEY=YOUR_APP_KEY
PUSHER_APP_SECRET=YOUR_APP_SECRET
PUSHER_APP_CLUSTER=YOUR_APP_CLUSTER
```
- Build the App
`npm run build` or `yarn build` to build the app.
- Start the App
`npm run start` or `yarn start` to start the app.
## Credits
Credits to [realtime-chat-with-sentiment](https://github.com/christiannwamba/realtime-chat-with-sentiment)