Socket
Book a DemoInstallSign in
Socket

@skeptrune/sherp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@skeptrune/sherp

Marp-style presentations made simple with Markdown/MDX

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

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

CommandDescription
sherp init <name>Create a new presentation project
sherp devStart development server
sherp buildBuild for production
sherp previewPreview 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

Keywords

presentation

FAQs

Package last updated on 14 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts