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 🙏

© 2024 – Pkg Stats / Ryan Hefner

screenshot-generator

v1.0.1

Published

A simple utility to capture website screenshots using Puppeteer

Downloads

110

Readme

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"