With Quiz-Builder, authenticated users can create their own quizzes and anonymous visitors to take them and see how many questions they got right.
- React
- Typescript
- Express
- Mongoose
Prequisites | Version |
---|---|
node.js | >= ^16.0.0 |
mongodb | latest |
-
Backend
- Step 1: Run command -
npm install
to install all the required packages - Step 2: Copy and rename
.env.example
to.env.development.local
and modify the values as you like. - Step 3: Run Command -
npm run dev
to run the app on localhost in development mode. - Step 4: Run Command -
npm start
to build the app and start production server.
- Step 1: Run command -
-
Frontend
- Step 1: Run command -
npm install
to install all the required packages - Step 2: Copy and rename
.env.example
to.env
and modify the REACT_APP_API_URL to server (backend) url. - Step 3: Run Command -
npm start
to run the app on localhost in development mode. - Step 4: Run Command -
npm build
to build the app.
- Step 1: Run command -