An open API service indexing awesome lists of open source software.

https://github.com/gitfoxcode/quiznuxt

Quiz written in Nuxt 3.0
https://github.com/gitfoxcode/quiznuxt

nuxt quiz

Last synced: 3 months ago
JSON representation

Quiz written in Nuxt 3.0

Awesome Lists containing this project

README

        

# 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](https://i.imgur.com/Xak30C2.png)

To add your own database replace the file `/public/questions.json` with your own json file.

The JSON structure you need to maintain:
```json
{
"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

```bash
yarn install
```

## Development

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

```bash
yarn dev
```

## Production

Build the application for production:

```bash
yarn build
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).