Activity

Tony

DAY 1 DEVLOG
so a quick rundown of this project is that i want to create a website that allows users to host a live quiz and have people join through a link or qr code. (like kahoot, quizzez/wayground, ect)

some features i want to achieve first off are:
-ability to actually create quizzes
-have a functional quiz
-allow people to join it

extra features:
-incorporate different types of questions
-multiple choice
-free response
-multiple answers / check all the boxes
different ways to ask a question / embed things into the question
-sound
-video

i’ll be using express.js and sockets for the backend to allow users to actually connect to the quiz

quizzes should have a structure that stores stuff like:
-who the host is
-the players participating
-questions that are gonna be answered or sent to the players
-if the quiz is being played right now or not (like a value to check if the quiz is active or not)

to create quizzes / rooms the user has to send a post request with the questions they want (through a .json file i guess?) and if the json flie is valid they’ll get a room code

html files should be split up into different states depending on what the user is doing (e.g. hosting, playing, joining a lobby)

got a prototype working!!

Attachment
0