sharp

Installation
SKILL.md

Sharp

High-performance Node.js image processing. 4-5x faster than ImageMagick for resizing JPEG, PNG, WebP, AVIF, and TIFF.

Quick Start

npm install sharp
import sharp from 'sharp';

// Resize and convert
await sharp('input.jpg')
  .resize(800, 600)
  .toFormat('webp')
  .toFile('output.webp');
Related skills
Installs
1
GitHub Stars
4
First Seen
Mar 29, 2026