Jeobeardy is a quiz game where you can create your own boards with categories and play them with friends https://jeobeardy.com/
Go to file
jeobeardy b0005ee465 Merge pull request 'Updated Dependencies; Added webp/avif support; adjust buzzer activation timings; always show question to host' (#3) from refactoring_loading_board_data into master
Reviewed-on: https://code.jeobeardy.com/jeobeardy/Jeobeardy/pulls/3
2026-04-17 23:59:40 +02:00
public Create .gitkeep 2023-07-12 16:22:26 +02:00
src Updated Dependencies; Added webp/avif support; adjust buzzer activation timings; always show question to host 2026-04-17 23:55:02 +02:00
.env_example Version 1.0 2023-07-10 18:18:02 +02:00
.eslintrc.cjs Version 1.0 2023-07-10 18:18:02 +02:00
.gitignore Version 1.0 2023-07-10 18:18:02 +02:00
.prettierrc.json Version 1.0 2023-07-10 18:18:02 +02:00
Dockerfile Updated Dependencies; Added webp/avif support; adjust buzzer activation timings; always show question to host 2026-04-17 23:55:02 +02:00
LICENSE Version 1.0 2023-07-10 18:18:02 +02:00
README.md Version 1.0 2023-07-10 18:18:02 +02:00
example_docker-compose.yml Version 1.0 2023-07-10 18:18:02 +02:00
example_mongo-init.js Version 1.0 2023-07-10 18:18:02 +02:00
index.html Version 1.0 2023-07-10 18:18:02 +02:00
package-lock.json Updated Dependencies; Added webp/avif support; adjust buzzer activation timings; always show question to host 2026-04-17 23:55:02 +02:00
package.json Updated Dependencies; Added webp/avif support; adjust buzzer activation timings; always show question to host 2026-04-17 23:55:02 +02:00
vite.config.mjs npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00

README.md

Jeobeardy

Jeobeardy (/dʒebeərdi/) is similiar to but not quite like Jeopardy. It is a quiz game where you can create your own boards with categories and then make your friends compete in a fun and interactive way

Code Structure

  • Server-side code can be found inside the ./src/server directory
  • Client-side code can be found inside the ./src/webapp directory

To install the necessary dependencies for the project, clone the repository and run

npm install

Run Server-side code

node ./src/server/server.js

or

npm start

to also build the client side code to be served by express (without Hot-Reload).

Run Client-side code

Compile with Hot-Reload for Development

npm run dev