Presentation slides for developers
Slidev or we can pronounce it (slide + dev, /slʌɪdɪv/) is a web-based slides maker and presenter. It’s designed for developers to focus on writing content in Markdown while also having the power of HTML and Vue components to deliver pixel-perfect layouts and designs with embedded interactive demos in your presentations.
Slidev consist of the following features
Read more about Why Slidev?
Presentation slides for developers
Slidev or we can pronounce it (slide + dev, /slʌɪdɪv/) is a web-based slides maker and presenter. It’s designed for developers to focus on writing content in Markdown while also having the power of HTML and Vue components to deliver pixel-perfect layouts and designs with embedded interactive demos in your presentations.
Slidev consist of the following features
Read more about Why Slidev?
If you want to try this witout manual setup, you can try it online with : sli.dev/new
But, i will try this with manual setup to local
with NPM:
npm init slidev
with Yarn:
yarn create slidev
After npm init slidev, you can type your project name and choose install with package (npm, yarn or pnpm), in my case i use npm.
In a project where Slidev is installed, you can use the slidev
binary in your npm scripts.
{
"scripts": {
"dev": "slidev", // start dev server
"build": "slidev build", // build for production SPA
"export": "slidev export" // export slides to pdf
}
}
After npm run dev or installation you will see the local slide show.