Buzzer
Simple buzzer for quizzes
Features
- Buzzers for both mobile and desktop
- Activate or Deactivate(TODO) buzzers after a countdown
- Board page for showing countdown and buzz list on a separate screen
- Optional password for both host and participants
Usage
- Install
socket.io
, the only dependency:
npm install
- Modify following snippet in
index.js
to set password or leave as is for no password:
// passwords for host and users, keep it null for no pass
const pass = {
'/host': null, // 'buzzerhost'
'/user': null // 'buzzeruser'
}
- Start buzzer server (default port is 4000):
node index.js
- Connect host, user and optionally board at
http://<server-ip>:4000/host.html
http://<server-ip>:4000/user.html
http://<server-ip>:4000/board.html