npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

slidev-theme-ventus

v0.1.4

Published

[![NPM version](https://img.shields.io/npm/v/slidev-theme-ventus?color=3AB9D4&label=)](https://www.npmjs.com/package/slidev-theme-ventus)

Readme

slidev-theme-ventus

NPM version

A Tornado 🌪 theme for Slidev.

Live demo: here

Install

Add the following frontmatter to your slides.md. Start Slidev then it will prompt you to install the theme automatically.

Learn more about how to use a theme.

Layouts

This theme provides the following layouts:

Footer

You can configure the presenter name and language used to format the date by configuring thoses props at the frontmatter

---
// at the frontmatter
  presenterName: "name-of-the-presenter" 
  dateFormat: "en-US" (note : link to the list of dateFormat)
---

Intro : intro

Usage:

  • Add cover in the layout field.
---
layout: cover
---

Dark | Light :-------------------------:|:-------------------------: coverDark | coverLight


Presenter : presenter

Usage:

  • Add intro in the layout field.
  • Add introImage for the speaker image.
---
layout: intro
presenterImage: './my-presenter-image.png'
---

Dark | Light :-------------------------:|:-------------------------: introDark | introLight


Section : section

Usage:

  • Add section in the layout field.
  • Add number to give a number to the section.
---
layout: section
number: 1
---

Dark | Light :-------------------------:|:-------------------------: SectionDark | SectionLight


Code : code

Usage:

  • Add code in the layout
  • Can't be used with a title
---
layout: code
---

Dark | Light :-------------------------:|:-------------------------: codeDark | codeLight codeDoubleDark | codeDoubleLight

Default : default

Usage:

  • Layout by defaults

Dark | Light :-------------------------:|:-------------------------: textWindowDark | textWindowLight

End : end

Usage:

  • Add end in the layout
  • You can end your presentation with this slide
---
layout: end
---

Dark | Light :-------------------------:|:-------------------------: textWindowDark | textWindowLight

Feedback : feedback

Goal :

  • Use to make a "pause" in your presentation and get feedback from the attendees

Usage:

  • Add feedback in the layout
---
layout: feedback
---

Dark | Light :-------------------------:|:-------------------------: textWindowDark | textWindowLight

Iframe-left or Iframe-right : iframe-left

Goal :

  • Use to visualize iframe while showing something else (text, image, code, etc..)

Usage:

  • Add iframe-left or iframe-right in the layout
---
layout: iframe-left
---

Dark | Light :-------------------------:|:-------------------------: textWindowDark | textWindowLight

Image-left or Image-right : image-left

Goal :

  • Use to visualize image while showing something else (text, image, code, etc..)

Usage:

  • Add image-left or image-right in the layout
---
layout: image-right
---

Dark | Light :-------------------------:|:-------------------------: imageRightDark | imageRightLight

Punch : punch

Goal :

  • Use to make the audience wake-up.
  • Use when you want to show something that stand out from the rest of the presentation

Usage:

  • Add punch in the layout
---
layout: punch
---

Dark | Light :-------------------------:|:-------------------------: imageRightDark | imageRightLight

Quote : quote

Goal :

  • Use when you quote someone.

Usage:

  • Add quote in the layout
---
layout: quote
---

Dark | Light :-------------------------:|:-------------------------: imageQuoteDark | imageQuoteLight

ROTI : roti

Goal :

Usage:

  • Add roti in the layout
---
layout: roti
---

Dark | Light :-------------------------:|:-------------------------: imagerotiDark | imagerotiLight

Components

This theme provides the following components:

Text <Text> ... </Text>

Goal :

<Text> Component will allow you to automatically format some text.

Usage :

To use it you just need to add it to your slides like this:

<Text>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</Text>

Variant <Variant> ... </Variant>

Goal :

<Variant> give you the ability to style the color of a text

Usage :

To use it you just need to add it to your slides like this:

<Variant type='info'>
  Some text
</Variant>

The props type give access to the theme of the application.

  • type is one of info | accent | warning

Card <Card> ... </Card>

Goal :

<Card> give you the ability to encapsulate Components/text/images with a backgroud and a title relative to the theme of the slides

Usage :

To use it you just need to add it to your slides like this:

<Card type='info' title='My Title'>
  Some text, components, images
</Card>

The props type give access to the theme of the application.

  • type is one of | info | accent | warning
  • title is a string

Note <Note> ... </Note>

Goal :

<Note> give you the ability to encapsulate Components/text/images with a backgroud and a title relative to the theme of the slides

Usage :

To use it you just need to add it to your slides like this:

<Note>
  Some nicely formated notes
</Note>

The props type give access to the theme of the application.

  • type is one of | info | accent | warning
  • title is a string