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

@reactslides/marketplace

v0.0.11

Published

A developer-first presentation tool with React and Tailwind support

Readme

@reactslides/marketplace

A centralized system for discovering, using, and sharing themes, color schemes, templates, and presentation examples for ReactSlides.

Features

  • 📦 Built-in Themes - 10+ professionally designed themes
  • 🎨 Color Schemes - Quick color palette swaps
  • 🔍 Search & Filter - Find themes by tags, author, or query
  • 🔌 Easy Integration - Works with CLI and Web app

Installation

pnpm add @reactslides/marketplace

Usage

Using Themes in React

import { Presentation, Slide } from "reactslides";
import { corporateDark, getThemeById } from "@reactslides/marketplace";

// Use a specific theme
function App() {
  return (
    <Presentation theme={corporateDark}>
      <Slide>...</Slide>
    </Presentation>
  );
}

// Or get by ID
const theme = getThemeById("corporate-dark");

Search and Filter

import { searchThemes, searchColorSchemes, getAllThemeTags } from "@reactslides/marketplace";

// Search by query
const darkThemes = searchThemes({ query: "dark" });

// Search by tags
const businessThemes = searchThemes({ tags: ["corporate", "professional"] });

// Get all available tags
const allTags = getAllThemeTags();

Using via CLI

# List all available themes
reactslides themes list

# Apply a theme to your project
reactslides themes apply corporate-dark

# Get theme info
reactslides themes info minimalist-light

Available Themes

| Theme ID | Name | Tags | |----------|------|------| | corporate-dark | Corporate Dark | dark, corporate, professional, business | | minimalist-light | Minimalist Light | light, minimal, clean, simple | | creative-gradient | Creative Gradient | gradient, creative, vibrant, colorful, dark | | ocean-blue | Ocean Blue | blue, ocean, calm, professional, dark | | forest-green | Forest Green | green, nature, forest, eco, dark | | sunset-warm | Sunset Warm | warm, sunset, orange, pink, dark | | midnight-purple | Midnight Purple | purple, elegant, midnight, dark, sophisticated | | tech-dark | Tech Dark | tech, developer, code, dark, programming | | startup-bold | Startup Bold | startup, bold, pitch, energetic, dark | | academic-classic | Academic Classic | academic, education, classic, professional, light |

Available Color Schemes

| Scheme ID | Name | Tags | |-----------|------|------| | ocean-blue | Ocean Blue | blue, ocean, calm, professional | | sunset-warm | Sunset Warm | warm, sunset, orange, pink | | forest-mist | Forest Mist | green, nature, forest, natural | | royal-purple | Royal Purple | purple, elegant, royal, sophisticated | | rose-gold | Rose Gold | pink, gold, elegant, soft, feminine | | arctic-blue | Arctic Blue | blue, arctic, cool, modern, light | | charcoal-slate | Charcoal Slate | gray, neutral, professional, dark, slate | | emerald-night | Emerald Night | emerald, green, luxury, dark, rich |

Theme Structure

Each theme contains:

interface MarketplaceTheme {
  id: string;           // Unique identifier
  name: string;         // Display name
  description: string;  // Theme description
  author: string;       // Author name
  version: string;      // Semantic version
  tags: string[];       // Search tags
  colors: {
    primary: string;    // Main brand color
    secondary: string;  // Secondary color
    background: string; // Background color
    foreground: string; // Text color
    muted: string;      // Muted text color
    accent: string;     // Accent/highlight color
  };
  fonts: {
    heading: string;    // Heading font stack
    body: string;       // Body text font stack
    mono: string;       // Monospace font stack
  };
}

Contributing Themes

Want to add your theme to the marketplace? Check out the contribution guidelines.

License

MIT