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

ecg-quicktest-model

v0.0.7

Published

JavaScript Model for the ECG quick test

Downloads

13

Readme

ecg-quicktest-model

JavaScript Model for the ECG quick test

Build Status

Build Status

Install

Requirements: Node.js 0.10.x

npm install --save ecg-quicktest-model

Use

var quickTestModel = require('ecg-quicktest-model');
var quickTest = quickTestModel.factory(); // create test for matrix version 4.1

quickTest.getQuestionsCount(); // how many questions are in the test, e.g. 27
quickTest.getAllowedAnswers(); // e.g. [0, 1, 2, 3, 4]
quickTest.getAllowedParticipantTypes(); // e.g. ['company', 'self-employed']

// set the participant type (default is 'company')
quickTest.setParticipantType('self-employed');

// start answering
quickTest.setAnswer(1, 3); // answer the first question with the value 3
quickTest.setAnswer(2, 4); // answer the second question with the value 4
// set the other answers

// get the results
quickTest.getResult().points; // return the achieved points
quickTest.getResult().level; // return the achieved level (0 for 32 points, 1 for 62, 2 for 94 and 3 for 128 points)

Testing

Run the tests:

npm test

The model is tested with Mocha and Chai.

Roadmap

  • :white_check_mark: Create a JS model for the quick test 4.1 and test it with mocha.

Contributing

Feel free to contribute to the Roadmap or otherwise.

You can:

  • collaborate through GitHub (See how in this video):
    • fork the repository
    • make changes
    • If you can, run npm test to make sure that the tests are still running successfully after your changes.
    • send a pull request
  • email the translated files to the main developer, see below.

Issues and Features

Share issues and desired features in GitHub.

License

MIT License.

Developers

Release History

  • 0.0.7 - fix getAnswersCount() method of to the abstract test. Tests improved.
  • 0.0.6 - add getPercentageFinished() and getAnswersCount() methods to the abstract test. Tests included.
  • 0.0.4 - add getNextQuestion() and getNextQuestion() methods to the 4.1 test. Tests included.
  • 0.0.3 - add result level.
  • 0.0.2 - add test participant.
  • 0.0.1 - added quick test 4.1 with tests and how to use.