Dynamic Rendering is, as the name implies, about rendering a page based on a dynamic condition. What we want to do is solve the very common problem of modern Progressive Web Apps not working very well with some older crawlers that are unfortunately still in use across the web, such as on those used by Facebook and LinkedIn. Our condition is therefore ”if a crawler or bot sees the page, give it prerendered markup”.
Even Google thinks this is a pretty good approach for SEO. Refer to their documents Understand the JavaScript SEO basics and Implement dynamic rendering for further reading.
For this to work, we need to intercept the browser’s request BEFORE it actually hits the server to see whether the visitor is a bot or not. This repo assumes Amazon Web Services (AWS) for the entire solution. For the edge function capability, this responsibility could probably be doled out to Cloudflare Workers or similar as well.
The individual services used will be:
- S3 bucket for hosting a static page. I’ve included a very basic routed React application in the
public
folder if you need something to experiment with. - CloudFront for adding edge locations and a CDN for the S3-hosted site.
- Serverless Lambda@Edge functions (4, to be exact) to intercept the browser request.
- Serverless ”regular” Lambda function to run a lightweight instance of Google’s headless browser, Puppeteer.
All of this magic can be fairly tedious to work with from scratch, especially if you are not accustomed to AWS. Combined with the slow deployment times, it’s not really the most user-friendly mini-project I’ve done. I hope I spare some of you out there a bit of wasted effort!
The below helps with the overall steps for setting everything up, with some steps automated and some manual. Since my last version, Serverless Framework has added more support for Lambda@Edge functions, but still not enough to make me capable of deploying all the functions and setting up Cloudfront the way it's supposed to be. Note that I am not saying it's not possible, but you won't find it working like that in this repo. You should be able to automate everything (minus function deployment) through Terraform if that's your poison of choice.
An improvement on this prerenderer would be to include render-caching capabilities so you need to do less processing.
- You will need an AWS account
- You will need Serverless Framework installed if you are going to use the automated approach
- Highly likely that you need to have the AWS CLI installed
- Highly likely that you need to be logged in through the terminal/environment
- Optional: A REST client like Insomnia if you don't really love to curl in your terminal
Use whatever you want!
A basic, routed React application is available in the demo-site-s3
folder if you need something to experiment with. The routes are /thisview
and /thatview
.
Make sure you have an AWS account and that you're logged in through the terminal/environment.
- Open
deploy-demo-site.sh
and set a unique bucket name - Run
deploy-demo-site.sh
- Upon successful deployment you will receive an endpoint URL such as
https://uxj5ky4iw8.execute-api.eu-north-1.amazonaws.com/dev/prerender
- Try running a GET request to the prerenderer, like so:
https://uxj5ky4iw8.execute-api.eu-north-1.amazonaws.com/dev/prerender?url=http://d13x2tqlfdnb32.cloudfront.net/
- Copy the endpoint URL, and paste it into the
PRERENDERER_ENDPOINT
constant insrc/edge/originResponse.js
(should be line 3)
Make sure you have an AWS account and that you're logged in through the terminal/environment.
- Go to https://s3.console.aws.amazon.com/s3/
- Deactivate anything to do with blocking access (for now, switch on things later as needed and what works)
- Turn on Static website hosting, point index and errors document fields to
index.html
- Before closing the panel, note the endpoint URL
- In the Permissions tab, add a Bucket Policy (located in
snippets/bucket-policy.json
) - In the Permissions tab, add a CORS configuration (located in
snippets/cors.xml
)
- Install the dependencies in the repo with
yarn
ornpm install
- Run
sls deploy
to deploy the package with Serverless - Upon successful deployment you will receive an endpoint URL such as
https://uxj5ky4iw8.execute-api.eu-north-1.amazonaws.com/dev/prerender
- Try running a GET request to the prerenderer, like so:
https://uxj5ky4iw8.execute-api.eu-north-1.amazonaws.com/dev/prerender?url=http://d13x2tqlfdnb32.cloudfront.net/
- Copy the endpoint URL, and paste it into the
PRERENDERER_ENDPOINT
constant insrc/edge/originResponse.js
(should be line 3)
- Go to https://console.aws.amazon.com/cloudfront/
- Click Create new Distribution
- Make sure that Origin Domain Name is the endpoint URL from S3 (the one seen in ”Static website hosting”, which looks something like
http://prerender-demo.s3-website.eu-north-1.amazonaws.com
) - Set Allowed HTTP Methods to "GET, HEAD, OPTIONS, PUT, POST, PATCH, DELETE"
- Set cache TTL items to 0 when initially testing this (you probably want caching later, though!)
- Set Compress Objects Automatically to "Yes"
- Note the section named Lambda Function Associations, since this is where you will manually specify which functions are activated when requesting the CloudFront distribution
- Finish, then go to the Error Page tab
- Set Error caching time to 0
- Set Customize Error Response to "Yes"
- Set Response Page Path to
/index.html
- Set HTTP Response Code to 200
- The format is identical between all three error codes, except for the HTTP Error Code (400, 403, 404)
This is going to deploy for 5-15 minutes, so continue with the rest below.
This is highly recommended, and will save you lots of time compared to doing it manually.
- Run
npm run deploy:edge
- Go to https://console.aws.amazon.com/lambda/
- Click Create new function
- Select Author from scratch
- Give it a good name; Node version should be 12
- In Execution Role, choose Create a new role with basic Lambda permissions
- For each function, copy-paste the supplied lambda code into the code editor
- Under Add triggers click CloudFront and then Deploy to Lambda@Edge
- You should be able to see the distribution you created (if not, you will have to wait for it to finish deploying)
- Cache behavior should be "*"
- The CloudFront event should correspond to whatever the supplied code is named (origin request, viewer response, etc.)
- Deploy!
- If you cannot deploy, you should do the next section in a new tab (you need to do it anyway)
- Repeat for all 4 functions
- Go to https://console.aws.amazon.com/iam/
- Go to Roles
- You should have roles created for each of the edge functions
I am overreaching a bit on what to create, but at least the following works for me.
- Under Permissions, click Attach policies
- Filter for
AWSLambdaBasicExecutionRole
and attach it - When it's added, click Add inline policy, and go to the JSON tab; paste in the contents of
snippets/lambda-log-policy.json
, save it - When it's added, go to the Trust relationships tab and click Edit trust relationship; paste in the contents of
snippets/lambda-iam-trust-policy.json
, save it
- Go to https://console.aws.amazon.com/lambda/
- For each Lambda, note the ARN in the right corner (something like
arn:aws:lambda:us-east-1:487572315234:function:PrerenderRequest:12
) - You must have the last part with
:12
or whatever the number might be - this corresponds to the version number, if you don't see it click the Qualifiers/Version box and switch to the version with the highest number - When you have collected all the four ARNs, go to https://console.aws.amazon.com/cloudfront/
- Go to Distribution settings and then to Behaviors
- If you don't have a behavior, create a new one, otherwise edit the previous
- Make sure to whitelist the following headers:
Access-Control-Request-Headers
,Access-Control-Request-Method
,Origin
,x-prerender-uri
,x-resolved-user-agent
,x-should-prerender
- At the bottom, in Lambda Function Associations open one event each for viewer request, origin request, origin response, viewer response
- In their respective Lambda Function ARN, paste in their corresponding ARN value including the
:12
(or whatever number) bit - Save
- Once again, everything will redeploy so have the CloudFront main view open to see the progress
Services that should be able to give you an indication of functionality:
- Facebook Sharing Debugger: https://developers.facebook.com/tools/debug/sharing/
- Google Mobile-Friendly Test: https://search.google.com/test/mobile-friendly
- LinkedIn: https://www.linkedin.com
If you use Insomnia or Postman, you can try GETting your Cloudfront distribution with a user-agent
header like googlebot
and it should respond with rendered HTML. Removing the header should in turn start returning the basic non-rendered HTML again.
Check the default Cloudwatch logs at console.aws.amazon.com/cloudwatch/. Edge functions are currently only available in the us-east-1
region, so look for those logs in that region. Logs may also show up in whatever region the CDN thinks you are in, so in case you actually don't find any logs, look in regions close to you.
When you test Facebook or similar, the same goes for those: These are most likely going to be run from one of the North American regions.
Run the teardown.sh
script. Also read the below from Serverless Framework's blog post on Lambda@Edge support:
**A note about removals**
When you’re done with testing you might want to remove the service via serverless remove. Note that the removal also takes a little bit longer and won’t remove your Lambda@Edge functions automatically. The reason is that AWS has to cleanup your functions replicas which can take a couple of hours. Removing the Lambda functions too early would result in an error.
The solution for this problem right now is to manually remove the Lambda@Edge functions via the AWS console after a couple of hours. You might want to automate this process with a script which issues AWS SDK calls to streamline this cleanup process.
Long story short: You will need to remove Cloudfront and Lambda@Edge functions manually.
Many steps, but that should about do it to add dynamic rendering!