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-mumbo

v0.1.7

Published

A scrapbook-style Slidev theme with patterned backgrounds, cream chapter cards, and polaroid logo stamps.

Readme

slidev-theme-mumbo

A scrapbook-style Slidev theme. Patterned backgrounds, cream chapter cards with subtle stripes, and an optional polaroid logo stamp on every slide.

Install

Add this line to your slides frontmatter:

---
theme: mumbo
---

Slidev will prompt to install on first run. Or install it manually:

npm install slidev-theme-mumbo

Layouts

| Layout | Use for | | --------- | ------------------------------------------------------------------------------------------ | | default | Universal layout — cover:, snippet:, cards:, items:, stickers:, or a content card |

Frontmatter

All layouts share a common base:

---
layout: default                 # `default` is implicit; can be omitted
pattern: grid                   # grid | stripes | gingham | dots | diagonal | plaid | solid
backgroundColor: '#88a989'      # any hex — drives the pattern background color
accentColor: '#16243a'          # optional — color used for links, strong, list markers, etc.
stamp:                          # optional polaroid on the patterned background
  url: /vue.svg                 # any square PNG/SVG
  position: tr                  # tl | tr | bl | br (default tr)
---

For a list slide, set items: (each entry auto-wraps in <v-click> so they reveal one by one):

---
label: Chapter One
headline: What's in the Box
subtitle: A short summary
items:
  - First point
  - Second point
  - Third point
---

For a chapter / hero slide, set the fields under a nested cover: object:

---
cover:
  label: Chapter One              # small label above the title
  headline: Lorem Ipsum Dolor     # large title
  quote: Every site is real-time… # alternate title styled with curly quotes
  subtitle: Sit Amet              # small label below the title
  tag: INTRO                      # masking-tape badge across the card
  width: 85                       # card width as a percent
  stamp:                          # polaroid inside the card
    url: /vue.svg
    position: br
---

headline and quote are mutually exclusive (quote takes precedence and renders the title with “ ”).

Patterns

| Name | Look | | ---------- | -------------------------- | | grid | Crosshatched grid | | dots | Polka dots | | stripes | Vertical stripes | | diagonal | 45° diagonal lines | | gingham | Picnic-blanket gingham | | plaid | Tartan plaid | | solid | No pattern, flat color |

Components

Auto-imported and available inside any slide:

| Component | What it does | | --------------- | -------------------------------------------------------------------- | | <CardsGrid> | Grid wrapper for 1–3 cards. Children should be <Card>s. | | <Card> | A single colored card. Props: color, label, text (slot fallback). | | <CodeWindow> | Mac-style window frame around a code block. Prop: title. | | <Cover> | The cream chapter card. Use directly to compose custom layouts. | | <PolaroidStamp> | Polaroid-framed image. Props: url, position. | | <StickersWall> | Centered flex-wrap wall of rotated outlined "stickers". Prop: items. | | <Wrapper> | Internal layout wrapper (pattern + background). Used by all layouts. |

Example — imperative form (slot content):

---
pattern: grid
backgroundColor: '#b3cde4'
---

<CardsGrid>
  <Card label="01" color="#5da9e9">Server-Sent Events</Card>
  <Card label="02" color="#a981ff">WebSockets</Card>
  <Card label="03" color="#ff8a3d">WebRTC</Card>
</CardsGrid>

Example — declarative via cover: and cards: frontmatter (renders the same content automatically):

---
pattern: grid
backgroundColor: '#88a989'
cover:
  label: MadVue 2026
  headline: Vue Real‑Time Apps
  subtitle: A talk by Nico Devs
  stamp:
    url: https://vuejs.org/images/logo.png
    position: tr
cards:
  - text: Server-Sent Events
    label: '01'
    color: '#5da9e9'
  - text: WebSockets
    label: '02'
    color: '#a981ff'
  - text: WebRTC
    label: '03'
    color: '#ff8a3d'
---

If cover is set, the slot renders inside the chapter card (useful for embedding a component below the headline). If snippet is set, the slot is wrapped in a <CodeWindow> titled with the snippet value — convenient for code-block slides:

---
backgroundColor: '#b8332b'
snippet: polling.js
---

```js
function poll() { /* ... */ }
```

If items is set, a list slide is rendered (top-level headline/label/subtitle decorate it; each item auto-wraps in <v-click>). If cards is set, the cards grid replaces the slot. If stickers is set, a wall of rotated chunky-outlined stickers is rendered:

---
pattern: dots
backgroundColor: '#7ad7d7'
stickers:
  - icon: logos:chrome
    rotation: -6              # degrees (number) or any CSS rotate value
  - icon: logos:firefox
    rotation: 4
  - icon: logos:microsoft-edge
    rotation: -3
  - icon: logos:safari
    rotation: '0.02turn'
---

With none of these set, the slot renders inside a cream content card on the patterned background.

Types

The theme exports prop types you can reuse when building custom components:

import type {
  LayoutBaseProps,  // class, pattern, backgroundColor, accentColor
  StampProps,       // stamp
  StampConfig,      // { url?, emoji?, icon?, position? }
  StampSide,        // 'tl' | 'tr' | 'bl' | 'br'
  CoverProps,       // label, headline, quote, subtitle, tag
  CoverConfig,      // CoverProps + StampProps + width
  CardItem,         // { text, subtext?, label?, color? } — label can be an Iconify name like "mdi:home"
  StickerItem,      // { text?, icon?, url?, rotation? }
} from 'slidev-theme-mumbo/types'

Local development

npm install
npm run dev      # opens example.md
npm run export   # PDF

License

MIT — Nico Devs