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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@skeptrune/sherp

v0.1.2

Published

Marp-style presentations made simple with Markdown/MDX

Downloads

265

Readme

Sherp 🎯

Marp-style presentations made simple with Markdown/MDX

Sherp is a CLI tool that lets you create beautiful, interactive presentations using just Markdown. No need to understand Astro, React, or any framework - just write Markdown and go!

✨ Features

  • 📝 Write in Markdown/MDX - Focus on content, not code
  • 🎨 Built-in themes - Multiple professional themes included
  • 🎯 Zero config - Works out of the box
  • ⌨️ Keyboard navigation - Arrow keys, spacebar, and shortcuts
  • 📱 Mobile responsive - 16:9 aspect ratio that scales perfectly
  • 🎪 Overview mode - Press 'O' to see all slides
  • 🔧 Fully customizable - Add your own CSS, JS, and React components
  • 🚀 Fast dev experience - Instant hot reload

🚀 Quick Start

Installation

npm install -g @skeptrune/sherp

Create a new presentation

sherp init my-presentation
cd my-presentation
sherp dev

That's it! Your presentation is now running at http://localhost:4321

📁 Project Structure

my-presentation/
├── presentations/           # Your MDX presentation files
│   └── example.mdx
├── styles/                  # Custom CSS (optional)
│   └── custom.css
├── scripts/                 # Custom JavaScript (optional)
│   └── custom.js
├── components/              # Custom React components (optional)
└── sherp.config.json       # Configuration

📝 Writing Presentations

Create MDX files in the presentations/ folder:

---
title: "My Awesome Talk"
author: "Your Name"
theme: "default"
paginate: true
---

# Welcome! 👋

This is my first slide

---

## Features

- Easy to write
- Beautiful output
- Keyboard navigation

---

# Questions?

Thanks for watching!

Slides are separated by --- (horizontal rules).

⚙️ Configuration

Edit sherp.config.json to customize your presentation:

{
  "theme": "default",
  "title": "My Presentation",
  "author": "Your Name",
  "presentations": "./presentations",
  "customStyles": "./styles/custom.css",
  "customScripts": "./scripts/custom.js",
  "components": "./components"
}

🎨 Themes

Built-in themes:

  • default - Clean and professional
  • gaia - Purple gradient
  • uncover - Bold blue
  • dark - VS Code inspired
  • light - Minimal

🎯 Commands

| Command | Description | |---------|-------------| | sherp init <name> | Create a new presentation project | | sherp dev | Start development server | | sherp build | Build for production | | sherp preview | Preview production build |

⌨️ Keyboard Shortcuts

  • Arrow keys / Space - Navigate slides
  • Home / End - First / Last slide
  • O - Overview mode
  • F - Fullscreen (in browser)

🎨 Custom Styling

Add custom CSS in styles/custom.css:

/* Custom heading color */
.slide h1 {
  color: #ff6b6b;
}

/* Custom background for slide 1 */
.slide[data-slide="1"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

📜 Custom Scripts

Add custom JavaScript in scripts/custom.js:

document.addEventListener('DOMContentLoaded', () => {
  console.log('Presentation loaded!');
  // Add custom interactions
});

🧩 Custom Components

Create React/JSX components in components/ and use them in your MDX:

// components/CustomButton.jsx
export default function CustomButton({ children }) {
  return <button className="custom-btn">{children}</button>;
}
import CustomButton from './components/CustomButton.jsx';

# My Slide

<CustomButton>Click me!</CustomButton>

🚢 Deployment

Build your presentation:

sherp build

Deploy the dist/ folder to:

  • Netlify - Drag and drop
  • Vercel - vercel --prod
  • GitHub Pages - Push to gh-pages branch
  • Any static hosting service

🤝 Contributing

Contributions welcome! Visit github.com/skeptrunedev/sherp

📄 License

MIT

🙏 Acknowledgments

Inspired by Marp - Made with Astro