Home
Softono

Realtime Pub Quiz

Open source JavaScript
24
Stars
9
Forks
8
Issues
1
Watchers
3 years
Last Commit

 About Realtime Pub Quiz

⁉️ Realtime Node.js and React.js Pub Quiz game

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing Realtime Pub Quiz?

We provide expert installation service for this software. Our team will install, configure, and secure Realtime Pub Quiz on your server. plans start at just $30.

Realtime Pub Quiz

View on GitHub

Realtime Pub Quiz Game

A Dutch realtime pub quiz This project was made as a school assignment.
See live demo: Demo
(Demo is in Dutch language)

Screenshot

Features

  • Build with Nodejs 8.1
  • ReactJS 16
  • React Redux 7.1
  • Redux 4
  • ExpressJS 4.13
  • Mongoose 5.7.6
  • WS (Websockets) 7.1.2

How to install

  1. git clone https://github.com/aaron5670/Realtime-Pub-Quizz.git
  2. Create a config.js file on the server with the following settings:
//CLOUD.MONGODB.COM DEVELOPMENT  
const USERNAME = "username";  
const PASSWORD = "password";  
const HOST = "yourhostname.mongodb.net";  
const PORT = "27017";  
const DB = "quizzer";  
  
var exports = module.exports = {USERNAME, PASSWORD, HOST, PORT, DB};
  1. Edit quizzer/src/config.js.
  2. Run npm install in the server folder and client folder.
  3. Run the server: node server.js.
  4. Run the Webpack server (client) npm start.
  5. Go to http://localhost:3000.