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

slidesdownloader

v1.0.3

Published

Download SlideShare presentations as PDF, PPTX, or ZIP from your terminal

Readme

SlideDownloader CLI

Download SlideShare presentations as PDF, PPTX, or ZIP directly from your terminal

npm version License: MIT

Features

  • Fast: Download presentations in seconds
  • Multiple Formats: Export as PDF, PowerPoint (PPTX), or ZIP
  • Easy to Use: Simple command-line interface
  • Interactive Mode: Guided prompts for beginners
  • Developer-Friendly: Perfect for automation and scripting

Installation

npm install -g slidesdownloader

Or using Yarn:

yarn global add slidesdownloader

Usage

Basic Usage

Download a presentation as PDF (default):

slidesdownloader https://www.slideshare.net/user/presentation-name

Specify Output Format

Download as PowerPoint:

slidesdownloader https://www.slideshare.net/user/presentation -f pptx

Download as ZIP (individual images):

slidesdownloader https://www.slideshare.net/user/presentation -f zip

Custom Output Path

slidesdownloader https://www.slideshare.net/user/presentation -o my-slides.pdf

Interactive Mode

For a guided experience:

slidesdownloader -i

Or simply:

slidesdownloader

Options

| Option | Alias | Description | Default | |--------|-------|-------------|---------| | --format | -f | Output format: pdf, pptx, zip | pdf | | --output | -o | Output file path | Auto-generated | | --interactive | -i | Interactive mode with prompts | false | | --help | -h | Show help | | | --version | -V | Show version number | |

Output Formats

| Format | Description | Best For | |--------|-------------|----------| | PDF | Portable Document Format | Viewing, sharing, printing | | PPTX | Microsoft PowerPoint | Editing, presentations | | ZIP | Individual slide images | Custom processing, archiving |

Examples

# Download as PDF
slidesdownloader https://www.slideshare.net/nasa/journey-to-mars

# Download as editable PowerPoint
slidesdownloader https://www.slideshare.net/nasa/journey-to-mars -f pptx

# Download slides as images
slidesdownloader https://www.slideshare.net/nasa/journey-to-mars -f zip

# Save to specific location
slidesdownloader https://www.slideshare.net/nasa/journey-to-mars -o ~/Downloads/mars.pdf

# Interactive mode for guided download
slidesdownloader -i

Requirements

  • Node.js 18.0.0 or higher
  • npm or Yarn

Configuration

You can customize the API endpoint using environment variables:

export SLIDEDOWNLOADER_API_URL=https://your-api.com

Troubleshooting

"Presentation not found" error

  • Make sure the URL is correct and the presentation is public
  • Some presentations may be private or deleted

Connection errors

  • Check your internet connection
  • The SlideShare website may be temporarily unavailable

Slow downloads

  • Large presentations with many slides may take longer
  • Consider using the ZIP format for faster downloads

Related

License

MIT License - see LICENSE for details.

Development

Setup

# Clone the repository
git clone https://github.com/yourusername/slidesdownloader-cli.git
cd slidesdownloader-cli

# Install dependencies
yarn install

# Build the project
yarn build

# Link for local testing
yarn link

Testing

# Run all tests
yarn test

# Run tests with coverage
yarn test:coverage

# Run CLI integration tests
yarn test:cli

# Run tests in watch mode
yarn test:watch

See TESTING.md for detailed testing information.

Scripts

| Script | Description | |--------|-------------| | yarn build | Compile TypeScript to JavaScript | | yarn dev | Watch mode for development | | yarn test | Run unit tests | | yarn test:coverage | Run tests with coverage report | | yarn test:cli | Run CLI integration tests | | yarn lint | Run ESLint | | yarn format | Format code with Prettier |

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development Process

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (yarn test)
  5. Commit your changes (git commit -m 'Add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Open a Pull Request

Made with love by SlideDownloader