
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
screenshot-generator
Advanced tools
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.
To install the package, run:
npm install screenshot-generator
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);
}
})();
If you would like to contribute to this project, feel free to submit issues, forks, and pull requests! Any improvements are greatly appreciated.
Check out the repository for the full code and more information: GitHub Repository: https://github.com/dev-sujay/screenshot-generator
FAQs
A simple utility to capture website screenshots using Puppeteer
We found that screenshot-generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.