Video-Call-App-NodeJS
Video-Call-App-NodeJS copied to clipboard
how to show users count in room?
#62 use a your connection guiding server for storing data example
const users={} //global variable
socket.on('connection', (user)=>{
users[socket.id]=user.name
}
)