Skip to content

Serverless example which navigates to a page, takes a screenshot and puts it in a s3 bucket

Notifications You must be signed in to change notification settings

slaytr/aws-node-screenshot-to-s3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

serverless-screenshot-to-s3

This stack sets up a Lambda and a S3 bucket. The Lambda when invoked will navigate to the url, take a screenshot and upload the screenshot to the S3 bucket.

The lambda optionally takes in an event object with a specified url to navigate to

{
    "url" : "https://www.google.com"
}

This lambda uses chrome-aws-lambda and puppeteer-core to take the screenshots.

Installation

Setup

Go into the serverless.yml file and specify a bucket name

# Specify your bucket name here
custom:
  bucketName: "your-bucket-name"

Run

Then in this directory run:

  • npm i
  • sls deploy

How to Use

Once this stack is deployed, you can either invoke the lambda through the management console or through the command line.

If by the command line, ensure that you have your aws credentials set - configure aws credentials

You can either invoke the function on it's own using:

sls invoke --function screenshotToS3

or provide a path to an event object that contains an url

sls invoke --function screenshotToS3 --path example-event.json

The lambda will return the entity tag and url of the object if successful in json format.

{
    "screenshotUrl": "https://<your-bucket-name>.s3.amazonaws.com/<uuid-4>.png",
    "ETag": "\"5b8ca437b8eb3c9d102b53cf07bc242a\""
}

About

Serverless example which navigates to a page, takes a screenshot and puts it in a s3 bucket

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages