npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

javascript-quiz-using-json

v0.5.1-alpha

Published

JavaScript Quiz Using JSON

Downloads

11

Readme

Javascript quiz using JSON :star:

Code Climate Build Status codecov devDependencies Status

This simple project which provides a clean API for rendering questions with multiple choice answer. The data is loaded using valid JSON and gave be retrieved from any end point which can return the data in the desirable format.

Each question can be assigned a score, this allows for a range of scores for each question. The

ALPHA v0.5.1

This project is currently in ALPHA and activity being worked on. Contributions are welcome!

Via NPM

npm i javascript-quiz-using-json

How to use:

Add the following HTML into your page:

HTML

<!-- dom reference -->
<div id="quizName"></div>

<!-- quiz package -->
<script src="./javascript-quiz-using-json/dist/quiz.umd.min.js"></script>

JAVASCRIPT

Basic initialisation.

Quiz.init({ id: "quizName" });  

Note: this needs to be done after referencing the script shown above.

Sample JSON

Here is a sample of the quiz question data:

  {
      "question": "What year was the film The Terminator released?",
      "info": "The Terminator is a 1984 American science fiction action film directed by James Cameron. It stars Arnold Schwarzenegger as the Terminator, a cyborg assassin sent back in time from 2029 to 1984 to kill Sarah Connor (Linda Hamilton), whose son will one day become a savior against machines in a post-apocalyptic future.",
      "options":
        [
          "1982",
          "1983",
          "1984",
          "1984"
        ],
      "scores":
        [0,3,1,2]
  }

CONFIGURATIONS

var configurations = {
  id: 'quizName',                  // the element reference within the DOM
  dataSource: './data.json',       // the json quiz data location
  randomise: 'false',              // randomise the order of the questions to the user
  loadingGif: './img/loading.gif', // loading image between rendering
};

Quiz.init(configurations);

HOW TO INSTALL

Pull the package from npm:

$ npm i javascript-quiz-using-json --save

Install dev dependancies:

$ npm install

Build the package:

$ npm run build

This will generate the files in the the dist folder, i.e. dist/quiz.umd.min.js

CONTRIBUTING

$ git clone

$ npm install

$ npm test

$ npm start

TO DO

  • [ ] Add optional style sheets
  • [ ] Add charts to result rendering
  • [ ] Add Automated Acceptance Tests
  • [ ] Set up semvar
  • [ ] Abstract the rendered html question into templates for better customisation
  • [ ] Add as npm package
  • [x] Add webpack bundler
  • [x] Remove jquery dependency
  • [x] Move TODOs to issues with need-help flag
  • [x] Update Travis Build
  • [x] Add module bundler
  • [x] Add test coverage badge
  • [x] Refactor json data for better clarity e.g "answers" should be "options" etc.
  • [x] Configurate as bower package
  • [x] Remove Bower, Switch to npm
  • [x] Add Unit Tests