Some reveal.js features, like external Markdown, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.
Make sure you have Node.js (10.0.0 or later) installed. Then, clone the reveal.js repository:
git clone https://github.com/hakimel/reveal.js.gitNext, move to the reveal.js folder and install dependencies:
cd reveal.js
npm installServe the presentation and monitor source files for changes:
npm startThen, open http://localhost:8000 to view your presentation!
Any changes you make to the source files will be reflected in the presentation automatically.