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.13

Published

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

Downloads

731

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

Frontmatter

All options are top-level — no nesting required. The slide mode is inferred from which keys are present.

Universal options (work in every mode)

---
pattern: grid                   # grid | stripes | gingham | dots | diagonal | plaid | solid
backgroundColor: '#88a989'      # any hex — drives the pattern background color
accentColor: '#16243a'          # color for links, strong, list markers, etc.
label: Chapter One              # small label above the title
headline: Lorem Ipsum Dolor     # large centered title → triggers cover card
quote: Every site is real-time… # alternate title with curly quotes (takes precedence over headline)
subtitle: Sit Amet              # small label below the title
tag: INTRO                      # masking-tape badge across the card
width: 85                       # cover card width as a percent
stamp:                          # polaroid stamp
  url: /vue.svg                 # any square PNG/SVG
  position: tr                  # tl | tr | bl | br (default tr)
---

Mode inference

| Keys present | Mode | |---|---| | snippet | Mac-style code window | | cards | Card grid | | stickers | Sticker wall | | items | Reveal list (left-aligned card) | | headline or quote | Cover card (centered) | | (none of the above) | Content card (left-aligned, slot) |

Cover card

Setting headline (or quote) is all you need — the slide becomes a centered chapter card:

---
pattern: grid
backgroundColor: '#88a989'
label: MadVue 2026
headline: Vue Real‑Time Apps
subtitle: A talk by Nico Devs
stamp:
  url: /vue.svg
  position: tr
---

List slide

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

Each item auto-wraps in <v-click> so they reveal one by one. Items support inline markdown and an optional (marker) prefix.

Cards

---
pattern: grid
headline: Pick your stack
cards:
  - text: Server-Sent Events
    label: '01'
    color: '#5da9e9'
  - text: WebSockets
    label: '02'
    color: '#a981ff'
  - text: WebRTC
    label: '03'
    color: '#ff8a3d'
---

Add reveal: true to make cards appear one by one via <v-click>. The label field accepts an Iconify icon name (e.g. mdi:home).

Stickers

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

Code snippet

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

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

Content card (slot)

With none of the above keys set, the slot renders inside a left-aligned cream content card:

---
pattern: dots
---

# My slide

Regular markdown content here.

Layouts

| Layout | Use for | |-----------|---------| | default | Everything above | | browser | Browser window screenshot. Props: url, image, width. Also supports headline, label, subtitle, tag, stamp. |

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/emoji/icon. Props: url, emoji, icon, position. | | <StickersWall> | Centered flex-wrap wall of rotated outlined stickers. Prop: items. | | <Wrapper> | Internal layout wrapper (pattern + background). Used by all layouts. |

Types

import type {
  LayoutBaseProps,  // class, pattern, backgroundColor, accentColor
  StampProps,       // stamp
  StampConfig,      // { url?, emoji?, icon?, color?, position?, inset? }
  StampSide,        // 'tl' | 'tr' | 'bl' | 'br'
  CoverProps,       // label, headline, quote, subtitle, tag, width
  CardItem,         // { text, subtext?, label?, icon?, color? }
  StickerItem,      // { text?, icon?, url?, rotation? }
} from 'slidev-theme-mumbo/types'

Local development

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