Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

screenshot-generator

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

screenshot-generator

A simple utility to capture website screenshots using Puppeteer

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-91.82%
Maintainers
1
Weekly downloads
 
Created
Source

Screenshot Generator

A simple and flexible utility for generating screenshots of webpages. This package allows you to capture a screenshot of a webpage either in desktop or mobile view, and saves it to a specified directory. It uses Puppeteer to automate the process of loading a webpage, simulating the viewport size (desktop or mobile), and capturing a screenshot.

GitHub Stars


Features

  • Capture screenshots of webpages in both desktop and mobile views.
  • Save screenshots in a specified directory.
  • Customizable viewport sizes.
  • Supports modern headless browser technology via Puppeteer.

Installation

To install the package, run:

npm install screenshot-generator

Usage

To capture in desktop view

const { generateScreenshot } = require('screenshot-generator');

(async () => {
    try {
        const url = 'https://example.com';
        const destinationPath = './screenshots';
        const width = 1280;  // Width of the desktop view
        const height = 720;  // Height of the desktop view
        
        const screenshotPath = await generateScreenshot(url, destinationPath, width, height);
        console.log(`Screenshot saved at: ${screenshotPath}`);
    } catch (error) {
        console.error('Error generating screenshot:', error);
    }
})();

To capture in mobile view

const { generateScreenshot } = require('screenshot-generator');

(async () => {
    try {
        const url = 'https://example.com';
        const destinationPath = './screenshots';
        
        // For mobile screenshot with default mobile viewport size
        const screenshotPath = await generateScreenshot(url, destinationPath, undefined, undefined, 'mobile');
        console.log(`Screenshot saved at: ${screenshotPath}`);
    } catch (error) {
        console.error('Error generating screenshot:', error);
    }
})();

Parameters

  • url: The URL of the webpage to capture.
  • destinationPath: The folder where the screenshot should be saved.
  • width: The width of the viewport in pixels (default: 1280 for desktop).
  • height: The height of the viewport in pixels (default: 720 for desktop).
  • device: The device mode ('desktop' or 'mobile'). Mobile will emulate a mobile device (default: 'desktop').

Contribution

If you would like to contribute to this project, feel free to submit issues, forks, and pull requests! Any improvements are greatly appreciated.

🧑‍💻 GitHub Repository

Check out the repository for the full code and more information: GitHub Repository: https://github.com/dev-sujay/screenshot-generator

"Buy Me A Coffee"

Keywords

FAQs

Package last updated on 12 Nov 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc