⚠️ Deprecated: This project has been deprecated. Please installspectacle-cliand usespectacle-boilerplateto generate your presentations with ease!
First, install spectacle-cli:
$ npm install -g spectacle-cliℹ️ Note: If you would like to avoid a global install, you can use
npx -p spectacle-cli spectacle-boilerplatein the place of thespectacle-boilerplatecommand below.
Then generate a new boilerplate Spectacle project!
$ spectacle-boilerplate -m mdx
# ... or with options! ...
$ spectacle-boilerplate \
--mode "mdx" \
--name "deck-o-awesomeness" \
--description "My fantastic Spectacle presentation" \
--dir "PATH/TO/NEW/DECK/DIRECTORY"
# Check out the full usage
$ spectacle-boilerplate -hSee the boilerplate guide for full instructions. As a quick starter:
# Install your dependencies
$ yarn
# Start development server at localhost:8080
$ yarn start
# Create a production build for publishing
$ yarn build