open source scorm player pure javascript and html?

Ashisha Nautiyal picture Ashisha Nautiyal · Jun 10, 2013 · Viewed 14.2k times · Source

Is there any scorm player which is purely based on the javascript and html . i do,t wanna use any server side languages for it . I found an open source Scormpool but it is just playing the scorm its not tracking . and no documentation is available . If you guys know any please help .

Answer

skfriese picture skfriese · Mar 24, 2014

This may get you started as well, or you can tailor it to your own needs.

https://github.com/skfriese/simple-scorm-api

It's a rudimentary SCORM 1.2-only RTE test environment in a single HTML file that I whipped up for my own needs years ago. I only recently elected to clean it up to share with others. It's easy to throw into your package folder and spin up from there. The SCO will assume it's running in an LMS, which is really all that's necessary for testing most of the time.

You can update the default values in the Javascript, and the data will be stored in LocalStorage or fall back to cookies if necessary. It will also "attempt" to read some values from a manifest, should one exist. It does not support multi-SCO packages or any other complex organizational features of SCORM.

The Reload Tools have been embedded into the page as well, so you'll find that most of the data elements will be validated.

Hope this helps someone.