Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

open source scorm player pure javascript and html?

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 .

like image 817
Ashisha Nautiyal Avatar asked Jun 10 '13 07:06

Ashisha Nautiyal


2 Answers

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.

like image 149
skfriese Avatar answered Oct 11 '22 08:10

skfriese


I was searching for similar solution myself and was unable to find anything.

So after struggling with docs and bits found online I have created this:

https://bitbucket.org/jugger0/tsp

It is far away from a fully-featured player but can be used as a starting point.

Maybe someone will find it useful.

like image 3
fsw Avatar answered Oct 11 '22 09:10

fsw