Just write Markdown and create cool slides.
Please see Fusuma's website for details!
Features
- Slide Syntax
- Markdown and MDX
- Code
- MathJax
- Diagrams and Flowcharts
- UI
- Experimental APIs on Browsers
-
Presentation API (Chrome, Firefox)
- Also, Fusuma works even without Presentation API (uses localstorage)
-
Screen Capture API (Chrome, Firefox)
- It will help live coding, etc
-
Presentation API (Chrome, Firefox)
- Others
- Zero Config
- Supporting SEO and OGP
- customizes JavaScript and CSS freely
Modes
- Start Mode (for development)
- Build Mode (for production)
-
Presentation Mode
- Speaker Note
- Timer
- Recording user's actions and voice
- Using a Fluorescent Marker on the slides
-
Live Mode
- Streaming tweets and comments
- Deploying to GitHub Pages
- Exporting slides as PDF
Demos
- Introducing Fusuma [repository]
- Others [repository]
You can also try Fusuma in Gitpod, a one-click online IDE for GitHub:
Getting Started
Node versions > v10
Just execute the following two lines…
Goal
Created a CLI that supports to release with 1 command without writing webpack, Babel, Postcss, etc setting file.
And make a slide with markdown only.
It can quickly create a slide and publish it to gh-pages.
Demo
slide: https://slides.hiroppy.me/the-present-and-future-of-JavaScript/
repo: https://github.com/hiroppy/slides/tree/master/slides/the-present-and-future-of-JavaScript
slide: https://hiroppy.github.io/fusuma/fx/
repo: https://github.com/hiroppy/fusuma/tree/master/samples/fx
Procedure
You just execute the following three lines for executing, generating and deploying slides.
$ npm i fusuma -D
$ npx fusuma init
$ mkdir slides && touch slides/title.md && echo '# Hello😄' > slides/title.md
# --- executable tasks---
$ npx fusuma start # development
$ npx fusuma build # production as NODE_ENV=production
$ npx fusuma deploy # deploy to github pages
$ npx fusuma pdf # export as PDF from HTML
# --- Tree ---
$ tree -a
.
├── .fusumarc.yml
└── slides
└── title.md
1 directory, 2 files
When npx fusuma start
is executed, it is output as follows.
Default theme is bespoke-theme-nebula.
And only .fusumarc.js
and slides/
are necessary files at the time of execution.
Tasks
Fusuma supports the following tasks.
-
init
: generate the configuration file(.fusumarc.js) -
start
: run with webpack-dev-server -
build
: build with webpack4 -
deploy
: upload the prebuilt files to gh-pages -
pdf
: convert prebuilt files from HTML to pdf
What it can do / What it can not do
What it can do
- development, build, and deploy can be done with one command
- presenter mode
- a table of contents is created in Sidebar
- can extend css and js
- can set OGP and SNS
- etc…
What it can not do
Expressing animation is difficult because a slide is written by Markdown.
However, you can write a slide as HTML and extend JS.
If you interested in Fusuma, please see this repository😍
https://github.com/hiroppy/fusuma
Thanks!
Discussion (0)