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

n8n-nodes-screenshotone

v0.1.4

Published

ScreenshotOne node for n8n to take screenshots of web pages, scrolling screenshots, render PDFs, and more.

Readme

n8n-nodes-screenshotone

n8n.io - Workflow Automation screenshotone.com

n8n-nodes-screenshotone is an n8n community node. It lets you use ScreenshotOne in your n8n workflows.

ScreenshotOne is a service that allows you to take screenshots of web pages, generate PDFs, convert HTML or Markdown to images and more.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials Compatibility
Usage Resources
Development
Version history License

Installation

Community Nodes

Follow the installation guide in the n8n community nodes documentation:

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-screenshotone in Enter npm package name.
  4. Agree to the risks of using community nodes.
  5. Select Install.

Install

Operations

  1. Screenshot any website, HTML or Markdown. Returns result as image.
  2. Full Page Screenshot is the same as Screenshot, but returns the full page as an image.
  3. PDF from rendering PDFs from URLs, HTML or Markdown. Returns result as PDF.
  4. Scrolling Screenshot it is a scrolling screenshot feature from ScreenshotOne. Results as video or GIF.
  5. Record Short Video is to record a short video of a website, HTML or Markdown. Results as video or GIF.

For scrolling screenshots and video check out the ScreenshotOne documentation.

Credentials

To use ScreenshotOne node, you will need to authenticate with the ScreenshotOne API.

  1. Sign up for or sign in to a ScreenshotOne account.
  2. Create if needed and copy the API (access) key.
  3. Create new credentials in n8n: 3.1. Add and use the ScreenshotOne node in your workflow. 3.2. Under "Credential to connect with", click "Create New Credential". 3.3. Paste the API (access) key you copied in step 2.

Test the credentials and make sure it works:

Credentials

Compatibility

The node was created and tested with n8n version 1.98.2. But there is no reason it won't work with older and newer versions.

Usage

If you use n8n for the first time, check out the "try it out" documentation to get started.

Response types

ScreenshotOne may return the response in different formats based on the request options:

  • json - for JSON responses, e.g. for PDF or screenshot with URLs.
  • text - for text responses, e.g. raw HTML.
  • base64 - for image responses.

Examples:

{
	"content_type": "application/json",
	"type": "json",
	"response": {
		"cache_url": "https://<URL of the screenshot in cache>"
	}
}

Or:

{
	"content_type": "text/html",
	"type": "text",
	"response": "<HTML body>"
}

Resources

Version history

  • 0.1.2 - Initial release of the ScreenshotOne node for n8n 🥳

Development

Check out documentation on creating nodes for detailed information on building and developing the node.

  1. Install dependencies:
npm install
  1. Build the node
npm run build
  1. Link the node to n8n from the node directory
npm link
  1. In your ~/.n8n/nodes directory, link the node:
npm link n8n-nodes-screenshotone
  1. Run n8n:
n8n start

Once the node is linked, you need to only rebuild and restart n8n to see the changes.

License

MIT

License

This project is licensed under the MIT License.