How We Built a Serverless Web App for the Stax Console

This post was originally published on the Stax website.
Building a web console for a product as complex as Stax presented a number of challenges. Our API-first, serverless platform offers a diverse …


How We Built a Serverless Web App for the Stax Console

This post was originally published on the Stax website.

Building a web console for a product as complex as Stax presented a number of challenges. Our API-first, serverless platform offers a diverse range of features for enterprises who want to manage and optimize their AWS ecosystem.

With such a developer-focused foundation, we needed to provide customers with a performant, reactive web app, with an intuitive user-experience that didn’t hide the power and functionality of our API. Data access through our console also needed to be built to the same high standard of security and compliance as the rest of our product.

This post will cover what we set out to achieve when building the Stax Console, our experience building a serverless GraphQL API to power it, and the lessons we learned along the way.

Serverless By Design

We wanted to produce a solution that was serverless from the start, to match the architecture we use for the rest of the product. One of the biggest benefits we’ve seen from going all in on serverless architectures at Stax is uptime and reliability. Avoiding relying on a server that can become a single point of failure allows us to meet our Service-Level Agreement, and ensure customers can access the platform during peak load times. Using AWS Lambda means queries from our front-end scale out horizontally and there’s always enough compute resources to process requests.

Using serverless products also improves security during development, as services like AWS Lambda provide baked-in compliance and service levels out of the box. Allowing Amazon to handle upgrades and patching of the infrastructure that our code runs on allows us to focus on building software instead of managing hardware.

The minimal infrastructure overhead when going serverless has allowed our team to fully own the deployment and monitoring of our GraphQL API. For example, developers can add new Networks functionality using separate Lambda functions to those used to fetch account data, minimizing the blast radius from pushing a new change to production.

Early Days

The first iteration of our Console had a fairly traditional web architecture. A React single-page application (SPA) called the Stax REST API directly, which is a serverless solution using AWS API Gateway and AWS Lambda in front of a relational database. AWS Cognito handles user authentication and sign-on for both the Console and REST API.

We ran into a few technical issues with this approach:

  1. Tooling. Modern front-end frameworks evolve quickly. Consuming data from REST APIs with React was complex and it was difficult to manage state.
  2. Stability. The tight coupling of our front-end SPA to back-end REST API was efficient, but the contract between systems was constantly changing as features developed which risked breaking our user interface.
  3. Real-Time Updates. We would need to build our own WebSocket implementation to push data to our front-end SPA to provide real-time updates. This would have been complex to implement in both the front end and back end.

It also became apparent that as Stax grew as a product, the Console needed to integrate with other back-end services than our REST API, such as Cost and Compliance data for accounts and our Customer Support Case service. Interfacing with multiple APIs and protocols, all with differing authentication mechanisms, led us to consider a Back End for Front End pattern with a single GraphQL API.

Our Console Architecture Now

The architecture centers on a GraphQL API layer that acts as a proxy between our front-end and back-end services. GraphQL is a query language for APIs; it allows developers to define the types of data in a system (the schema), and wire up functions to fetch data from different sources (resolvers). Relationships between data can be expanded in a single GraphQL query. For example, a single request can resolve a Stax Workload and the user that deployed it in one go.

A key reason GraphQL suited our needs is that data can be fetched from any source by a resolver and be presented to a front end as a single interface. This means that as Stax grows, we can refactor and optimize back-end services with minimal impact to our front-end developers and customers. Authentication is also massively simplified. The front-end authenticates to our GraphQL API in one place, which handles connections to various REST and GraphQL APIs and event sources behind the scenes.

At Stax, we’re closely partnered with AWS, and try to use native AWS solutions where possible as part of our development philosophy. We opted to use AWS AppSync, a fully managed serverless GraphQL implementation as the core of our service.

AWS AppSync implements the main GraphQL directives, including GraphQL Subscriptions that manage WebSocket connections between clients and your GraphQL API. AWS Lambda fetches and transforms data in GraphQL resolver functions, AWS DynamoDB is used for serverless data stores, and AWS EventBridge triggers Lambda functions in response to system events.

Our current Stax Console architecture makes use of GraphQL, AWS AppSync, AWS Dynamo and AWS EventBridge

Continue reading
How We Built a Serverless Web App for the Stax Console
on SitePoint.


Print Share Comment Cite Upload Translate
APA
Adam Quigley | Sciencx (2024-03-28T15:22:20+00:00) » How We Built a Serverless Web App for the Stax Console. Retrieved from https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/.
MLA
" » How We Built a Serverless Web App for the Stax Console." Adam Quigley | Sciencx - Tuesday August 4, 2020, https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/
HARVARD
Adam Quigley | Sciencx Tuesday August 4, 2020 » How We Built a Serverless Web App for the Stax Console., viewed 2024-03-28T15:22:20+00:00,<https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/>
VANCOUVER
Adam Quigley | Sciencx - » How We Built a Serverless Web App for the Stax Console. [Internet]. [Accessed 2024-03-28T15:22:20+00:00]. Available from: https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/
CHICAGO
" » How We Built a Serverless Web App for the Stax Console." Adam Quigley | Sciencx - Accessed 2024-03-28T15:22:20+00:00. https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/
IEEE
" » How We Built a Serverless Web App for the Stax Console." Adam Quigley | Sciencx [Online]. Available: https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/. [Accessed: 2024-03-28T15:22:20+00:00]
rf:citation
» How We Built a Serverless Web App for the Stax Console | Adam Quigley | Sciencx | https://www.scien.cx/2020/08/04/how-we-built-a-serverless-web-app-for-the-stax-console/ | 2024-03-28T15:22:20+00:00
https://github.com/addpipe/simple-recorderjs-demo