Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndlano/h5p-summary-keywords
https://github.com/ndlano/h5p-summary-keywords
h5p
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ndlano/h5p-summary-keywords
- Owner: NDLANO
- License: mit
- Created: 2019-10-08T08:03:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T08:43:05.000Z (about 2 months ago)
- Last Synced: 2024-09-18T11:31:31.543Z (about 2 months ago)
- Topics: h5p
- Language: JavaScript
- Homepage:
- Size: 601 KB
- Stars: 0
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# H5P Summary Keywords
This content type lets the user add keywords while reading/viewing/listening to relevant resources and make an essay
afterwards using the keywords created. The content type triggers reflection and thinking from the user.## 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`.The build process will transpile ES6 to earlier versions in order to improve
compatibility to older browsers. If you want to use particular functions that
some browsers don't support, you'll have to add a polyfill.The build process will also move the source files into one distribution file and
minify the code.