Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flying-sheep/revealjs-template
Best-practice Reveal.js template
https://github.com/flying-sheep/revealjs-template
Last synced: about 1 month ago
JSON representation
Best-practice Reveal.js template
- Host: GitHub
- URL: https://github.com/flying-sheep/revealjs-template
- Owner: flying-sheep
- Created: 2015-02-25T15:49:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-03T10:20:48.000Z (over 9 years ago)
- Last Synced: 2023-03-12T00:42:31.040Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 156 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reveal.js Template
==================Born from personal best practices:
* [Gulp](http://gulpjs.com/) for nonsense-free buildscripts
* [Babel](https://babeljs.io/) for writing JS2015 (aka ECMA 6) in 2015
* [Browserify](http://browserify.org/) for code modularization
* [Sass](http://sass-lang.com/) because CSS preprocessors are no big deal and Reveal.js uses that one (enabling us to reuse variables)The paths of imported SASS and JS files aren’t pretty because Reveal.js isn’t intended as NPM module, but that’s the only problem.
Why?
----Because the usage model of Reveal.js is bad. You are to fork and edit? How to deal with upsteam changes?
My way, everything stays separated: just bump the version of Reveal.js in package.json, do `npm update` and rebuild your file. Done.
How?
----This thing isn’t going to change much, and mainly a starting point, unlike Reveal.js.
So just download a .tar.gz or .zip, as you’re not going to want to keep up with upstream changes (again, unlike Reveal.js).
Then extract it to somewhere, go there, and…
```console
$ # Install deps
$ npm install
$ # Do an initial build
$ gulp build
$ # Launch the dev server
$ gulp
```Look at what the output tells you: There will a server be running (usually on http://localhost:8888) with your presentation. Any changes to the source files will trigger a reload of the presentation (you’ll stay on the current slide of course).
More features!
--------------1. Use JS2015/ECMA6 with polyfills (iterators! array functions! `Promise`! stuff!)
2. Use the [`fetch()`](https://developer.mozilla.org/en-US/docs/Web/API/GlobalFetch/fetch) API for `Promise`-based requests
3. Start hassle-free with a [LiveReload](http://livereload.com/) and [Autoprefixer](https://github.com/postcss/autoprefixer#autoprefixer-) enabled Gulpfile. Just run `gulp` and every time you save HTML, JS or SCSS files, your presentation reloads with the changes
4. Two small extensions:* Append `?print-pdf` to the URL to be able to [convert it to PDF via Chrome](https://github.com/hakimel/reveal.js#pdf-export)
* Use `` to load a SVG containing `class="fragment"` elements or to style SVG elements with CSS