A chat room where users talk to each other user ,I used WebSockets in this project and used Redis to store users messages
- Node JS
- Redis
Setting the config file in app/config/default.json
{
"name": "chat room",//name project
"port": 80,// port
"icon":"/images/icon.png", // icon path
"title":"Chat Room" // title page
}Instal Package
npm iRun
npm startDebug Mode edit line in package.json
// normal state
"scripts": {
"start": "set nodemon index.js"
},
// debug mode
"scripts": {
"start": "set DEBUG=app:debug && nodemon index.js"
},