Skip to content

gitFoxCode/quiznuxt

Repository files navigation

Quiznuxt

Simple quiz app for Nuxt3 learning and college exam questions (current question database is not correct and only sample)

Available at https://nom-tau.vercel.app/

Sample quiz question

To add your own database replace the file /public/questions.json with your own json file.
The JSON structure you need to maintain:

 {
    "question": "Question title here!",
    "answers": [
        "good answer",
        "bad answer",
        "bad answer",
        "bad answer", 
        "bad answer"
    ]
}

TO DO:

  • a new mode that repeats at the end the questions we answered wrong
  • multiple choice
  • different grading modes, negative points etc.

Setup

Make sure to install the dependencies

yarn install

Development

Start the development server on http://localhost:3000

yarn dev

Production

Build the application for production:

yarn build

Checkout the deployment documentation.

Releases

No releases published

Packages

No packages published