Socket
Socket
Sign inDemoInstall

bytee-quiz

Package Overview
Dependencies
21
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bytee-quiz

Simple Quiz app powered by Vue.js and Spectre.css.


Version published
Weekly downloads
1
decreased by-90.91%
Maintainers
1
Install size
19.6 MB
Created
Weekly downloads
 

Readme

Source

Vue Quiz

Simple Quiz app powered by Vue.js and Spectre.css.

Demo

Features

  • Easy to use and fast integration into websites.
  • Single-Choice, Multiple-Choice and Fill-the-blank question support.
  • Simple JSON files, no server needed.
  • Option to use a full-blown API quiz server with support for tracking & database storage.
  • Timer and question counter
  • Randomize questions and answers
  • Explanations for answers
  • Score based results
  • Suggest question form (With API)
  • Report question form (With API)
  • i18n support

Quiz server

Instead of simple JSON files for the questions, you can also use the nodejs powered quiz server.

Question JSON markup

Questions follow a simple JSON format, the "Suggest question" view can generate the correct markup for you.

Check the demo quiz json file in the /public folder for more examples.

[
  {
    "title": "Question text?",
    "kind": "single|multiple|text",
    "code_block": "",
    "resolution": [
      3
    ],
    "difficulty": "5",
    "answers": [
      {
        "content": "-h",
        "explanation": "ls -lh shows the size values in **h**uman readable format."
      },
      {
        "content": "-l",
        "explanation": "ls -l is the list view."
      },
      {
        "content": "-r",
        "explanation": "ls -r reversely orders the output (DESC)."
      },
      {
        "content": "-a",
        "explanation": "ls -a shows hidden files starting with a dot."
      }
    ]
  }
]

Setup

Install the dependencies first with npm or yarn.

npm install
Compile and hot-reload for development
npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Keywords

FAQs

Last updated on 27 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc