docs/guide/index.md
Slidev <sup>(slide + dev, /slaɪdɪv/)</sup> is a web-based slides maker and presenter. It's designed for developers to focus on writing content in Markdown. With the power of web technologies like Vue, you are able to deliver pixel-perfect designs with interactive demos to your presentation.
::: tip
You can learn more about the rationale behind this project in <LinkInline link="guide/why" />.
:::
<!-- - 📝 [**Markdown-based**](/guide/syntax) - focus on content and use your favorite editor - 🧑💻 [**Developer Friendly**](/guide/syntax#code-blocks) - built-in code highlighting, live coding, etc. - 🎨 [**Themable**](/resources/theme-gallery) - theme can be shared and used with npm packages - 🌈 [**Stylish**](/guide/syntax#embedded-styles) - on-demand utilities via [UnoCSS](https://github.com/unocss/unocss). - 🤹 [**Interactive**](/custom/directory-structure#components) - embedding Vue components seamlessly - 🎙 [**Presenter Mode**](/guide/ui#presenter-mode) - use another window, or even your phone to control your slides - 🎨 [**Drawing**](/features/drawing) - draw and annotate on your slides - 🧮 [**LaTeX**](/guide/syntax#latex) - built-in LaTeX math equations support - 📰 [**Diagrams**](/guide/syntax#diagrams) - creates diagrams using textual descriptions with [Mermaid.js](https://mermaid.js.org/) - 🌟 [**Icons**](/guide/syntax#icons) - access to icons from any icon set directly - 💻 [**Editor**](/guide/index#editor) - integrated editor, or the [VSCode extension](/features/vscode-extension) - 🎥 [**Recording**](/features/recording) - built-in recording and camera view - 📤 [**Portable**](/guide/exporting) - export into PDF, PNGs, or PPTX - ⚡️ [**Fast**](https://vitejs.dev) - instant reloading powered by [Vite](https://vitejs.dev) - 🛠 [**Hackable**](/custom/) - using Vite plugins, Vue components, or any npm packages --> <!-- <FeaturesAnimation /> -->Start Slidev right in your browser with StackBlitz: sli.dev/new
Requires Node.js >= 20.12.0 installed.
Run the following command to create a new Slidev project locally:
::: code-group
# If you haven't installed pnpm
npm i -g pnpm
pnpm create slidev
# Not recommended -
# NPM will download the packages each time you create a new project,
# which is slow and takes up a lot of space
npm init slidev@latest
yarn create slidev
bun create slidev
deno init --npm slidev
:::
Follow the prompts to start your slides project. The slides content is in slides.md, which initially includes demos of most the Slidev features. For more information about the Markdown syntax, please check <LinkInline link="guide/syntax" />.
:::: details Single file usage (not recommended)
If you prefer to have a single Markdown file as your slides, you can install the Slidev CLI globally:
::: code-group
pnpm i -g @slidev/cli
npm i -g @slidev/cli
yarn global add @slidev/cli
bun i -g @slidev/cli
deno i -g npm:@slidev/cli
:::
Then, you can create and start a single file slides via:
slidev slides.md
::::
Slidev provides a set of commands in its CLI. Here are some common ones:
slidev - Start the dev server. See the dev command.slidev export - Export the slides to PDF, PPTX, or PNGs. See <LinkInline link="guide/exporting" />.slidev build - Build the slides as a static web application. See <LinkInline link="guide/hosting" />.slidev format - Format the slides. See the format command.slidev --help - Show the help messageTo run these commands, you can add them to your package.json scripts (which has been done for you if the project was created via npm init slidev):
{
"scripts": {
"dev": "slidev --open",
"build": "slidev build",
"export": "slidev export"
}
}
Then, you can simply run npm run dev, npm run build, and npm run export.
For more information about the CLI, please check the CLI guide.
Since Slidev uses Markdown as the source entry, you can use any editor you prefer to create your slides. We also provide tools to help you edit you slides more conveniently:
<LinkCard link="features/vscode-extension" /> <LinkCard link="features/side-editor" /> <LinkCard link="features/prettier-plugin" />It's recommended to join our official Discord Server to get help, share your slides, or discuss anything about Slidev.
If you're encountering bugs, feel free to open an issue on GitHub.
Slidev is made possible by combining these tools and technologies.
@vueuse/core, @vueuse/head, @vueuse/motion, etc.