https://github.com/pranjalgit503/chatapp
Demo Chat App using Node.js, Express and Socket.io
https://github.com/pranjalgit503/chatapp
ejs-templates expressjs mongodb nodejs socket-io
Last synced: 2 months ago
JSON representation
Demo Chat App using Node.js, Express and Socket.io
- Host: GitHub
- URL: https://github.com/pranjalgit503/chatapp
- Owner: PranjalGit503
- Created: 2021-11-16T10:28:26.000Z (over 4 years ago)
- Default Branch: socketios
- Last Pushed: 2022-01-29T20:33:19.000Z (over 4 years ago)
- Last Synced: 2025-10-26T23:38:34.454Z (8 months ago)
- Topics: ejs-templates, expressjs, mongodb, nodejs, socket-io
- Language: JavaScript
- Homepage: https://quickchatters.herokuapp.com/
- Size: 53.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chatapp
Demo Chat App using Node.js, Express and Socket.io
## Demo:
## Installation
The code for the chat app can be found at the public GitHub repo . Either clone the repo to a local folder on your machine or download and extract the archive if you don't have Git installed.
Open a terminal window session, or the equivalent on your machine, and enter the following command to install all the Node modules needed to run the app:
```Javascript
npm install
```
### Run the app in development mode
After doing an **npm** **install** enter the following npm run command:
```Javascript
npm run dev
```
This will start the app and set it up to listen for incoming connections on port 8000. Open up your browser of choice and go to the url http://localhost:8000/ to start using the app itself. The npm run dev command automatically runs the app using the nodemon script so any changes you make to the app's javascript, CSS or HTML code will automatically restart it.