Present your TypeScript talk directly in the playground, powered by GitHub gists!
npm install typescript-playground-presentation-modeA way to present your TypeScript talk in style!
This plugin adds a copy of Reveal.js above the playground, slides are created
using Markdown (via marked) and have the ability to set the text in the playground.



With markdown looking like:
``md
---
TypeScript extends JavaScript by adding types.
TypeScript speeds up your development experience by catching errors and providing fixes before you even run your code.
Any browser, any OS, anywhere JavaScript runs. Entirely Open Source.
---
...
`
This markdown would turn into three slides.
- TSNY Jan 2020 - gist
1. Get started by making a gist: https://gist.github.com
2. Make an index.md and add some example markdown---
3. Split your slides with
4. Save your gist, then tell the playground to load that gist
#### Playground support
You can change the playground support by adding a playground html element in the slides, this lets you use
markdown code blocks to show code in the slides:
`mdNetwork Requests
There are a few ways to get info from an API
---
?'''ts
const response = await fetch("mysite.com/api/dogs")
'''
import fetch from "node-fetch"
const start = await () => {
const response = await fetch("https://mysite.com/api/dogs)
...
}
---
(I faked the markdown code block, it would normally use backticks, but I can't put markdown blocks in a markdown block...)
#### Built In Slides
Reveal.js supports building in a slide using fragements
`md
Anyone can contribute
It takes a village to make a big OSS project
---
Extra thanks to
- Orta Therox
- Danger McShane
---
`TODO
- Make it pretty
- Add a back to slides button
- Add a down to code button when playground has changed
- Are there more things we can hook into than just code?
Contributing
You can use
yarn start to set up both a copy of rollup to generate the JS, and serve to host it`sh
yarn start
`Then set up the TypeScript playground to get a plugin from from
http://localhost:5000/index.js`.