https://github.com/akullpp/min-reveal
Minimal setup for creating a reveal.js presentations in a productive way.
https://github.com/akullpp/min-reveal
Last synced: 4 months ago
JSON representation
Minimal setup for creating a reveal.js presentations in a productive way.
- Host: GitHub
- URL: https://github.com/akullpp/min-reveal
- Owner: akullpp
- License: mit
- Created: 2018-12-09T16:29:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-09T16:29:55.000Z (over 7 years ago)
- Last Synced: 2025-08-07T04:41:26.045Z (11 months ago)
- Language: HTML
- Size: 34.2 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# min-reveal
Minimal setup for creating a [reveal.js](https://revealjs.com) presentations in a productive way, i.e.
- split slides each in a separate HTML file
- automatic asset handling
- building a standalone package for distribution
- full offline capabilities
## Usage
### Install
To install the dependencies:
```
npm i
```
### Local
To run the loop and view the presentation locally:
```
npm start
```
The presentation will be available under [http://localhost:3210](http://localhost:3210) and responds to changes.
### Package
To build a standalone package for distribution:
```
npm run build
```
## Explanation
Each slide can be a separate HTML file inside `src/` which will be picked up by a gulp task and concatenated.
Every asset under `src/asset` is copied to the build directory.