Lux

Write presentations in Jade:

.slide
  h1 My Presentation
  p This is slide one.
 
.slide
  h2 Slide two

Share over network like:

$ lux start

Or export to static HTML:

$ lux export

 

 

Press space or for next slide.

Install

npm install -g lux

Getting Started

Generate a skeleton presentation

$ mkdir mypres && cd mypres
$ lux generate

Then edit the index.jade file to add your content.

Serving presentation over the network

$ lux start
==> Presentation running on http://<your computer>:3000

Static HTML Export

Export static HTML with lux export and you get a fully-featured presentation in HTML format, but without remote control abilities.

Make columns

Split a slide in two like this:

.row
  .col.half
    p Left content here
  .col.half
    p Right content here

Contribute!

Please contribute at http://github.com/jamiemill/lux.