🌐 English · Español · Français · Português · Deutsch · Polski
Monorepo containing the @studiolxd/react-scorm headless SCORM runtime library and an interactive demo app that showcases every feature.
| Package | Description | Docs |
|---|---|---|
@studiolxd/react-scorm |
Headless React + TypeScript SCORM 1.2 / 2004 runtime library | README |
example |
Interactive demo app — showcases every library feature | README |
npm install # install all workspaces from the root
npm run dev:lib # build the library in watch mode
npm run dev:example # start the example dev server (http://localhost:5173)Additional scripts available from the root:
npm run build— builds the librarynpm run test— runs the library test suite
react-scorm/
├── package.json # npm workspaces root (private)
├── packages/
│ └── react-scorm/ # @studiolxd/react-scorm — published to npm
│ └── README.md # full library documentation
└── example/ # interactive demo (not published)
└── README.md # demo documentation
Only packages/react-scorm is published to npm. The example workspace and the root are private. To publish:
cd packages/react-scorm
npm publishMIT