Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndlano/h5p-active-reader-text-input
https://github.com/ndlano/h5p-active-reader-text-input
h5p
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ndlano/h5p-active-reader-text-input
- Owner: NDLANO
- License: mit
- Created: 2023-04-21T12:37:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-15T10:55:30.000Z (4 months ago)
- Last Synced: 2024-07-15T12:36:31.732Z (4 months ago)
- Topics: h5p
- Language: JavaScript
- Homepage:
- Size: 534 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# H5P Active Reader Text Input
## Getting started
Clone this repository with git and check out the branch that you are interested
in (or choose the branch first and then download the archive, but learning
how to use git really makes sense).Change to the repository directory and run
```bash
npm install
```to install required modules. Afterwards, you can build the project using
```bash
npm run build
```or, if you want to let everything be built continuously while you are making
changes to the code, run
```bash
npm run watch
```
Before putting the code in production, you should always run `npm run build`.Also, you should run
```bash
npm run lint
```
in order to check for coding style guide violations.In order to pack an H5P library, please install the
[H5P CLI tool](https://h5p.org/h5p-cli-guide) instead of zipping everything
manually. That tool will take care of a couple of things automatically that you
will need to know otherwise.In simple cases, something such as
```bash
h5p pack my-awesome-library.h5p
```
will suffice.For more information on how to use H5P, please have a look at
https://youtu.be/xEgBJaRUBGg and the H5P developer guide at
https://h5p.org/library-development.