Skip to content

lmihaidaniel/simple-scorm-wrapper

Repository files navigation

version 0.2.0

Documentation

Javascript API wrapper for Scorm 1.2 and/or Scorm 2004

Installation

npm install simple-scorm-wrapper

Usage examples

import scorm from 'simple-scorm-wrapper';

let api = new Scorm({
  exitValue: null, //optional use to enforce value sent when the program is terminated
  score: {
    min: 0,
    max: 100
  },
  debugger: function(err, msg, param, value) {
    console.log(err, param, value);
  }
}, function(api, message) {
  //success callback - triggered if the initialization of the LMS apiHandler was successful
  //your program/code logic here
});

Methods

api.exitValue = ""; // force cmi.exit value. Accepts one of these values : "", "normal", "logout", "suspend";

About

JavaScript Simple SCORM API Wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published