Video-Call-App-NodeJS icon indicating copy to clipboard operation
Video-Call-App-NodeJS copied to clipboard

how to show users count in room?

Open manvfx opened this issue 3 years ago • 1 comments

manvfx avatar Oct 13 '21 11:10 manvfx

#62 use a your connection guiding server for storing data example

const users={} //global variable
socket.on('connection', (user)=>{
users[socket.id]=user.name
}
)

devjs1000 avatar Jan 27 '22 01:01 devjs1000