Better Programming

Advice for programmers.

Follow publication

Member-only story

How to Build User Notifications With AWS WebSockets

Allen Helton
Better Programming
Published in
6 min readFeb 9, 2022

Photo by Prateek Katyal on Unsplash

When you log in to a website like Facebook, where do your eyes go first? The top of your feed? The stories banner?

Probably not.

Your eyes go straight to the toolbar to see if there is a little red badge showing you notifications or new friend requests. We can’t help it, we love notifications.

Every little notification we see fires a signal in our brains that gives us a sense of satisfaction. Honestly, we’re addicted to notifications. So what better than to implement that with our WebSocket?

If you’ve been following along, this is part four in an introductory series to WebSockets. Each part builds on the one before, so if you’re joining us now, I’d highly recommend reading the first three parts.

Today we’re going to expand on what we’ve built to create user notifications.

Deploy To The Cloud

Just like the three previous parts, the work is done ahead of time. To deploy the updates that add user notifications, run the following command in a terminal in the root of the repo on your local machine.

git fetch 
git checkout part-four
npm run deploy

This will checkout this portion of the walkthrough and deploy it to AWS. The updates included to support user notifications are:

  • A lambda function to search for and post to specific user connections
  • Dead Letter Queues (DLQs) for event delivery/processing failures
  • CloudWatch alarm for notifying when a failure has occurred
  • Updates to our Async API Spec that define new input and output events

Fortunately, adding user notifications to what we already had was easy. Our data structure…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Allen Helton
Allen Helton

Written by Allen Helton

I am an AWS serverless hero with a strong focus on API design and standardization, event-driven architectures, and software automation.

No responses yet

Write a response