Getting Started with Reveal.js
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.
Download and Install
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.git
Next, move to the reveal.js folder and install dependencies:
cd reveal.js
npm install
Run the Demo
Serve the presentation and monitor source files for changes:
npm start
Then, open http://localhost:8000 to view your presentation!
Any changes you make to the source files will be reflected in the presentation automatically.