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

slide-cast

v0.2.18

Published

Web presentation tool with video recording included

Downloads

33

Readme

🎬 SlideCast

Create stunning presentations with built-in video recording!

SlideCast is a modern web presentation tool that lets you build beautiful slideshows while recording yourself presenting. Perfect for content creators, educators, and anyone who wants to make engaging video presentations.

Live example: https://rnd-pro.com/presentations/slide-cast/

✨ What Can You Do?

  • 📽️ Interactive Slideshows - Build dynamic presentations with ease
  • 🎨 Digital Whiteboard - Draw and annotate directly on your slides
  • 📹 Built-in Recording - Capture your presentation with webcam overlay
  • 🚀 Web-based - No downloads needed, works in any modern browser

🎯 Perfect For

  • 🎥 Creating videos for YouTube, LinkedIn, TikTok, Instagram
  • 📊 Business presentations and pitches
  • 🎓 Educational content and tutorials
  • 💼 Online meetups, webinars, and demos

🚀 Quick Start

Add SlideCast to your project with just one line:

<script src="https://cdn.jsdelivr.net/npm/slide-cast/index.js/+esm" type="module"></script>

📖 How to Create Presentations

📝 Method 1: Using Markdown Files

Perfect for text-heavy presentations:

<slide-it caption="Welcome to Our Product" import-md="/slides/intro.md"></slide-it>
<slide-it caption="Key Features" import-md="/slides/features.md"></slide-it>
<slide-it caption="Get Started Today" import-md="/slides/cta.md"></slide-it>
<video-spot></video-spot>
<common-toolbar></common-toolbar>

💻 Method 2: Using JSDWA Files

For more advanced, interactive content:

<slide-it caption="Interactive Demo" import-jsdwa="/slides/demo.html.js"></slide-it>
<slide-it caption="Live Charts" import-jsdwa="/slides/charts.html.js"></slide-it>
<slide-it caption="Thank You!" import-jsdwa="/slides/outro.html.js"></slide-it>
<video-spot></video-spot>
<common-toolbar></common-toolbar>

What's JSDWA? 🤔
JSDWA (JavaScript Distributed Web Assets) are simple JavaScript modules that export web content as strings. Think of them as reusable components for HTML, CSS, SVG, or any text-based web content!

⚡ Method 3: Auto-Generate from Markdown

The fastest way to create presentations:

<group-from source="./my-awesome-presentation.md"></group-from>
<video-spot></video-spot>
<common-toolbar></common-toolbar>

Your markdown file structure:

## Welcome Slide

This is my opening slide with some great content!

---

## Main Points

- First important point
- Second key insight  
- Third amazing feature

---

## Questions?

Thanks for watching! Let's discuss.

🔧 Component Reference

<slide-it> - Your Slide Builder

Creates individual slides in your presentation.

Attributes:

  • caption - The title shown in your slide navigation
  • import-md - Path to a Markdown file containing slide content
  • import-jsdwa - Path to a JavaScript module exporting slide content
  • slide-number - Manual slide number setting (can be empty)
  • hide-video-spot - Hides Video Spot circle when certain slide is in focus

Inline Content:

<slide-it caption="About Us">
  <h2>Our Story</h2>
  <p>We started this journey to make presentations more engaging...</p>
</slide-it>

<group-from> - Bulk Slide Generator

Attributes:

  • source - Path to the Markdown file used for automatic slide generation

<video-spot> - Webcam Integration

Adds a sleek video circle showing your webcam feed during presentations. Perfect for that personal touch!

<common-toolbar> - Presentation Controls

Provides all the essential controls you need - navigation, recording buttons, and more.

🎨 Pre-drawing Feature

Want to prepare some drawings beforehand? You can create slide artwork and save it as a permanent drawing layer:

<slide-it caption="Architecture Overview">
  <img src="./system-diagram.png" pre-drawing>
  <h2>How Our System Works</h2>
  <p>Here's the technical overview...</p>
</slide-it>

Just draw on your slide, right-click to save the image, and reference it with the pre-drawing attribute!

Styling

Use regular CSS to customize application elements:

<style>
  :root {
    --clr-1: #899abc;
    --clr-2: #000;
  }
  slide-it {
    border-radius: 2px;
  }
  /* etc... */
</style>

📄 License

MIT - Feel free to use SlideCast in your projects!

👥 Created By

rnd-pro.com team ([email protected])


Ready to create amazing presentations? Start building with SlideCast today! 🚀