Rapid Fire is a quiz based application which give user 10 questions on specific topic, written in React and backend is in NodeJS and Mongo
- Smooth and Funky UI with animations.
- Choose questions on multiple categories.
- Give Quizes any number of times you want.
- Option to add new questions to database.
- More Categories Coming soon
- Persistent functionality to track you previous attempts
- Login and Logout functionalities.
Below are the steps you need to follow to run code locally:
- Fork the code -- server folder: This folder contain the backend nodejs code. -- main branch: This is the main frontend code.
- Create an
.env
file under server/config, update the properties using the given.env.example
in code - Do a npm install in both server folder and main code.
npm install
- Run the server code in server folder using nodemon.
nodemon server
- Run the frontend code in frontend folder using start script
npm start