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

@piou/screenshot

v1.1.0

Published

Take full-page screenshots of multiple URLs with TypeScript CLI

Downloads

7

Readme

@piouc/screenshot

A TypeScript CLI tool for taking full-page screenshots of multiple URLs using Puppeteer.

Features

  • Take full-page screenshots of multiple URLs concurrently
  • Multiple viewport sizes support with WIDTHxHEIGHT format (e.g., 1000x1000)
  • Automatic scrolling to load lazy-loaded images
  • Organized output with size and URL indexing in filenames
  • Built with strict TypeScript for type safety

Installation

NPM Package

npm install -g @piouc/screenshot

Local Development

npm install
npm run build

Usage

Command Line Interface

# Basic usage
screenshot https://example.com https://google.com

# Custom output directory
screenshot -o ./my-screenshots https://example.com

# Custom viewport size (WIDTHxHEIGHT format)
screenshot -s 1920x1080 https://example.com

# Multiple viewport sizes
screenshot -s 800x600 -s 1200x900 -s 1920x1080 https://example.com

# Custom concurrency and timeout
screenshot -c 4 -t 60 https://example.com

# Multiple options combined
screenshot -o ./output -s 1920x1080 -s 800x600 -c 2 -t 30 https://example.com https://google.com

NPX Usage

npx @piouc/screenshot https://example.com

Options

  • -o, --output <dir>: Output directory for screenshots (default: ./screenshots)
  • -s, --size <size>: Viewport size in WIDTHxHEIGHT format (e.g., 1000x1000). Can be specified multiple times for multiple sizes (default: 1440x1080)
  • -c, --concurrency <number>: Number of parallel screenshots (default: 8)
  • -t, --timeout <seconds>: Page load timeout in seconds (default: 30)

Output

Screenshots are saved with descriptive filenames that include:

  • Size index (zero-padded, 2 digits)
  • URL index (zero-padded, 2 digits)
  • Timestamp
  • Viewport size (WIDTHxHEIGHT)
  • Hostname and path from the URL

Example filenames with multiple sizes and URLs:

  • 01_01_2024-01-15_10-30-45_800x600_example_com.png (Size 1, URL 1)
  • 01_02_2024-01-15_10-30-47_800x600_google_com.png (Size 1, URL 2)
  • 02_01_2024-01-15_10-30-49_1200x900_example_com.png (Size 2, URL 1)
  • 02_02_2024-01-15_10-30-51_1200x900_google_com.png (Size 2, URL 2)

Development

Prerequisites

  • Node.js >= 16.0.0
  • npm or yarn

Scripts

# Install dependencies
npm install

# Build the project
npm run build

# Development with watch mode
npm run dev

# Clean build directory
npm run clean

# Type checking
npm run typecheck

# Linting
npm run lint

Project Structure

├── src/
│   └── index.ts          # Main CLI application
├── bin/
│   └── cli.js            # Executable entry point
├── dist/                 # Compiled JavaScript output
├── tsconfig.json        # TypeScript configuration
├── package.json         # Package configuration
└── README.md           # This file

Technical Details

  • Built with TypeScript with strict type checking
  • Uses Puppeteer for browser automation
  • Commander.js for CLI argument parsing
  • Supports both CommonJS and ES modules
  • Follows functional programming patterns (no classes unless necessary)

License

MIT