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-marimo-islands

v0.1.0

Published

Slidev addon for interactive marimo notebooks using Pyodide/WASM

Readme

slidev-marimo-islands

Bring interactive Python notebooks into your presentations

Share live, executable Python code in your Slidev slides. Built on marimo's reactive notebook cells and powered by Pyodide/WASM - no external server needed. Perfect for technical talks, data science presentations, and teaching.

Overview

marimo provides marimo-islands which enable you to embed reactive python cells within HTML documents — you can read more about them in their documentation. In this slidev add-on we wrap marimo-islands as Vue components for compatibility with slidev slides. The python code actually runs in pyodide workers in the browser via WASM.

All the marimo cells share the same context so all the conventional marimo rules apply: do not duplicate variables, the last variable of a cell gets displayed, etc.

Installation

npm install slidev-marimo-islands

Quick Start

  1. Add the addon to your slidev frontmatter:
---
addons:
  - slidev-marimo-islands
---
  1. Use marimo code blocks in your slides:
```marimo
import marimo as mo
slider = mo.ui.slider(0, 100)
slider
```

That's it! Run npx slidev your-slides.md and your Python code will execute in the browser.

Try the Example

git clone https://github.com/lucharo/slidev-marimo.git
cd slidev-marimo
npm install
npx slidev islands-example.md

Component Props

For advanced control, use the <MarimoIsland> component:

| Prop | Type | Default | Description | |------|------|---------|-------------| | code | string | required | Python code to execute | | displayCode | boolean | true | Show source code | | hideLines | number[] | [] | Hide specific lines (1-indexed) | | codePosition | "top" | "bottom" | "bottom" | Position code above or below output |

Example:

<MarimoIsland
  code="import marimo as mo&#10;mo.ui.slider(0, 100)"
  :display-code="true"
/>

Limitations

  • Startup time: Pyodide initialization takes 2-5 seconds
  • Package support: Limited to Pyodide-compatible packages — use micropip.install to install missing dependencies, e.g:

```marimo
import micropip
micropip.install("plotly")
```
  • Performance: Runs slower than native Python
  • Interactivity: Basic marimo widgets work; complex React-based components may not
  • Marimo version: Currently pinned to 0.11.6 (last stable version before CSS regression)

License

MIT

Contributions

I am not a full stack or front end person. I know enough about marimo internals to get a project like this one going but this is by no means production level code. For its inception I've relied heavily on tools such as claude code and sane software principles like linting with biome and some unit tests. vibecoded contributions are welcome but I expect you to please read the code that you submit at least once. non vibe coded contributions from fullstack people and audits are very very welcome!