All Projects → aws-samples → Aws Serverless Appsync App

aws-samples / Aws Serverless Appsync App

Licence: other
This workshop shows you how to build a Web Application that demonstrates how easy it is to create data driven web applications all with no servers. You will build a serverless web application that lets users search for popular tourist destinations. The application will use AWS AppSync and the AWS Serverless platform to provide real-time weather analysis of the indexed destinations.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Aws Serverless Appsync App

Aws Serverless Ecommerce Platform
Serverless Ecommerce Platform is a sample implementation of a serverless backend for an e-commerce website. This sample is not meant to be used as an e-commerce platform as-is, but as an inspiration on how to build event-driven serverless microservices on AWS.
Stars: ✭ 469 (+189.51%)
Mutual labels:  appsync, aws, serverless, lambda
Aws Serverless Appsync Loyalty
Unicorn Loyalty: E-Commerce Serverless GraphQL Loyalty Sample App
Stars: ✭ 110 (-32.1%)
Mutual labels:  appsync, aws, serverless, lambda
Full Stack Serverless Cdk
Learn to Build Full-Stack Serverless Apps and APIs using AWS Cloud Development Kit (CDK) in Baby Steps.
Stars: ✭ 122 (-24.69%)
Mutual labels:  appsync, aws, serverless
Hexaville
The modern serverless web application engine and framework for Swift
Stars: ✭ 123 (-24.07%)
Mutual labels:  aws, serverless, lambda
Refunc
A lib make building AWS Lambda compatible layer easily
Stars: ✭ 144 (-11.11%)
Mutual labels:  aws, serverless, lambda
Aws Serverless Cicd Workshop
Learn how to build a CI/CD pipeline for SAM-based applications
Stars: ✭ 158 (-2.47%)
Mutual labels:  aws, serverless, lambda
Auto Remediate
Cloud Conformity Auto Remediate
Stars: ✭ 119 (-26.54%)
Mutual labels:  aws, serverless, lambda
Serverless Sam
Serverless framework plugin to export AWS SAM templates for a service
Stars: ✭ 143 (-11.73%)
Mutual labels:  aws, serverless, lambda
Json Serverless
Transform a JSON file into a serverless REST API in AWS cloud
Stars: ✭ 108 (-33.33%)
Mutual labels:  aws, serverless, lambda
Designing Cloud Native Microservices On Aws
Introduce a fluent way to design cloud native microservices via EventStorming workshop, this is a hands-on workshop. Contains such topics: DDD, Event storming, Specification by example. Including the AWS product : Serverless Lambda , DynamoDB, Fargate, CloudWatch.
Stars: ✭ 131 (-19.14%)
Mutual labels:  aws, serverless, lambda
Aws Lambda List
A list of hopefully useful AWS lambdas and lambda-related resources.
Stars: ✭ 130 (-19.75%)
Mutual labels:  aws, serverless, lambda
Spark On Lambda
Apache Spark on AWS Lambda
Stars: ✭ 137 (-15.43%)
Mutual labels:  aws, serverless, lambda
Serverless Layers
Serverless.js plugin that implements AWS Lambda Layers which reduces drastically lambda size, warm-up and deployment time.
Stars: ✭ 119 (-26.54%)
Mutual labels:  aws, serverless, lambda
Node Lambda Log
Basic logging mechanism for Node 6.10+ Lambda Functions
Stars: ✭ 115 (-29.01%)
Mutual labels:  aws, serverless, lambda
Aws Amplify Workshop React
Building Serverless React Applications with AWS Amplify
Stars: ✭ 155 (-4.32%)
Mutual labels:  appsync, aws, serverless
Iopipe Js Core
Observe and develop serverless apps with confidence on AWS Lambda with Tracing, Metrics, Profiling, Monitoring, and more.
Stars: ✭ 123 (-24.07%)
Mutual labels:  aws, serverless, lambda
Serverless Next.js
⚡ Deploy your Next.js apps on AWS Lambda@Edge via Serverless Components
Stars: ✭ 2,977 (+1737.65%)
Mutual labels:  aws, serverless, lambda
Aws Lambda Vpc Nat Examples
Example of setting up AWS lambda function with VPC and NAT
Stars: ✭ 92 (-43.21%)
Mutual labels:  aws, serverless, lambda
Zip It And Ship It
Intelligently prepare Node.js Lambda functions for deployment
Stars: ✭ 104 (-35.8%)
Mutual labels:  aws, serverless, lambda
Aws Amplify Workshop React Native
Building Cloud-enabled Mobile Applications with React Native & AWS Amplify
Stars: ✭ 124 (-23.46%)
Mutual labels:  appsync, aws, serverless

Serverless Web Application with AppSync Workshop

Serverless Bytes | Building a Serverless GraphQL App
Follow along this workshop on YouTube.

This workshop shows you how easy it is to build a data driven web applications all with no servers. You will build a serverless web application that lets users search for popular tourist destinations. The application will provide real-time weather analysis of the indexed destinations.

You will host your web application's static assets on Amazon S3 and use S3 to deliver the web application to your users. The application will integrate with AWS AppSync to provide real-time data from multiple data sources via GraphQL technology. Destination data will be stored in Amazon DynamoDB and AWS Lambda will query for real time weather information. AppSync will make it easy to access this data and provide the exact information our application needs.

The application architecture uses Amazon S3 to host the static web resources including our ReactJS based frontend (HTML, CSS, JavaScript, and image files). The application is loaded by the user's browser and interacts with our API layer built using, AWS AppSync. AppSync provides realtime query capability to search for the list of travel destinations stored in Amazon DynamoDB. AppSync makes it easy to combine data from AWS Lambda to provide realtime weather information for each destination.

See the diagram below for a depiction of the complete architecture:

App Architecture

Prerequisites

  1. Signup for a free OpenWeatherApp account here: https://openweathermap.org/appid. Make sure you note the assigned api key.
  2. Provision an AWS Cloud9 instance.

AWS Account

In order to complete this workshop you'll need an AWS Account with access to create AWS IAM, S3, DynamoDB, Lambda, and AppSync resources. The code and instructions in this workshop assume only one developer is using a given AWS account at a time. If you try sharing an account with another developer, you'll run into naming conflicts for certain resources. You can work around these by appending a unique suffix to the resources that fail to create due to conflicts, but the instructions do not provide details on the changes required to make this work.

All of the resources you will launch as part of this workshop are eligible for the AWS free tier if your account is less than 12 months old. See the AWS Free Tier page for more details.

Browser

We recommend you use the latest version of Chrome to complete this workshop.

AWS Cloud9 or a Text Editor

The instructions below assume you are using Cloud9 to build this application. You can optionally choose to use any Text editor.

Implementation Instructions

Region Selection

This workshop can be deployed in any AWS region that supports the following services:

  • AWS Lambda
  • Amazon AppSync
  • Amazon S3
  • Amazon DynamoDB

You can refer to the region table in the AWS documentation to see which regions have the supported services. Among the currently supported regions you can choose are: N. Virginia, Ohio, Oregon, Ireland, Frankfurt, Singapore, Tokyo, Sydney, and Mumbai.

Once you've chosen a region, you should deploy all of the resources for this workshop there. Make sure you select your region from the dropdown in the upper right corner of the AWS Console before getting started.

Region selection screenshot

Step 0: Prepare Cloud9 Workspace

Download all files from the Github repo. Upload them to your Cloud9 workspace (File -> Upload Local files ...)

Upload screenshot

Step 1: Create your DynamoDB Table

Execute following CLI command to create a table called: AppSync-Destinations

aws dynamodb create-table --table-name AppSync-Destinations --attribute-definitions AttributeName=id,AttributeType=S --key-schema AttributeName=id,KeyType=HASH --provisioned-throughput ReadCapacityUnits=10,WriteCapacityUnits=10

Execute the following CLI command to load the table with a few travel destinations:

aws dynamodb batch-write-item --request-items file://Destinations.json

Step 2: Create your Lambda Function

This function will get the latest weather data from the OpenWeather API. The function will be written in NodeJS.

  • Switch back to your AWS Cloud9 IDE and create a new Lambda function.
  • Select the AWS Resources tab on the right.
  • Click "Create a new Lambda Function"
  • For Function name, enter: getWeatherData

Upload screenshot

Click Next and select empty-nodejs

Upload screenshot

  • Click Next, accept all defaults and Finish.
  • On the left, expand your getWeatherData folder and open index.js.
  • Copy the provided source code from getWeatherData.js and paste it into index.js.
  • Open the template.yaml file and add the following environment variable to the bottom of the template. This is your OpenWeather API key. Replace with your OpenWeather API key:
  • Make sure you Save your changes!
Environment:
    Variables:
        APPID: YOUR_API_KEY_HERE

Upload screenshot

Right click your function and select Deploy

Upload screenshot

Step 3: Create your AppSync API backend

Open the AWS AppSync Console and click Create API. Choose Build from Scratch and click Start. Enter a name for your API and click Create

On the next screen, scroll down to the "Integrate your app" section and download your aws-exports.js config file. Choose the Javascript tab and click Download Config. You will save this file into your ./src directory later.

Upload screenshot

Setup your data sources

We will be using DynamoDB and Lambda as our data sources

  • On the left pane, Select Data Sources. For the name enter Destinations.
  • Select the table you created in the previous step and click Create

Upload screenshot

  • On the left pane, Select Data Sources. For the name enter WeatherConditions.
  • For data source type select AWS Lambda function. Then Select the getWeatherData function you created in the previous step and click Create

Upload screenshot

Setup your AppSync Schema

  • On the left pane, select Schema.
  • Copy and paste the following into the Schema editor and click Save:
type Destination {
	id: ID!
	description: String!
	state: String!
	city: String!
	zip: String!
	conditions: Weather!
}

type Mutation {
	addDestination(
		id: ID,
		description: String!,
		state: String!,
		city: String!,
		zip: String!
	): Destination!
}

type Query {
	# Get a single value of type 'Post' by primary key.
	getDestination(id: ID!, zip: String): Destination
	getAllDestinations: [Destination]
	getDestinationsByState(state: String!): [Destination]
}

type Subscription {
	newDestination: Destination
		@aws_subscribe(mutations: ["addDestination"])
}

type Weather {
	description: String
	current: String
	maxTemp: String
	minTemp: String
}

schema {
	query: Query
	mutation: Mutation
	subscription: Subscription
}

Configure the Query resolvers

  • Scroll to the Query section, locate getAllDestinations: [Destination] and click Attach.
  • For the Data source name choose Destinations.
  • In the Configure request mapping template box, choose List items
  • In the Configure response mapping template box, choose Return a list of results
  • Click Save

Optional: Connect the getDestinationsByState Query Resolver

Upload screenshot

Configure the Weather resolver

  • Scroll to the Destination section and click Attach for conditions: Weather!.
  • For the Data source name choose WeatherConditions.
  • In the Configure request mapping template box, enter the following JSON in the box:
{
    "version" : "2017-02-28",
    "operation": "Invoke",
    "payload": {
      "city":$util.toJson($context.source.city)
    }
     
}

This will grab the results from the parent DynamoDB query and pass the city attribute into the Lambda function as the payload. The $context.source attribute contains the result of the parent query.

In the Configure response mapping template box, choose Return Lambda Result. Your configuration should look similar to this:

Upload screenshot

Configure the Mutuation resolver

  • For the Data source name choose Destinations.
  • In the Configure request mapping template box, choose Put Item
  • In the Configure response mapping template box, choose Return a single item
  • Accept all defaults. Pay attention to autoId.

Upload screenshot

Step 4: Implement your ReactJS web front end

Switch back to the AWS Cloud9 IDE. Upload the aws-exports.js file you downloaded in the previous step to your Cloud9 workspace

Create your ReactJS project (this step will take a few minutes):

npm install -g npx
npx create-react-app my-destination-app
cd my-destination-app

Test your base ReactJS site by starting the local server:

npm start
  • Preview the ReactJS site: Select Preview -> Preview Running Application

Enter **Control + C ** to shutdown the web server.

Install AppSync dependencies:

npm install --save react-apollo graphql-tag aws-sdk
npm install --save aws-appsync 
npm install --save aws-appsync-react
npm install --save react-router-dom
npm install --save semantic-ui-css

Under the /my-destination-app/src folder create a Components folder and a Queries folder Drag and drop files you downloaded into src as follows:

App.js
aws-exports.js
Components
    AddDestination.jsx
    AllDestinations.jsx
Queries
    AllDestinationsQuery.js
    NewDestinationMutation.js
    NewDestinationsSubscription.js

Step 5: Deploy your ReactJS front end

Create S3 bucket for static website hosting:

aws s3 mb s3://[YOUR-BUCKET-NAME]
aws s3 website s3://[YOUR-BUCKET-NAME]/ --index-document index.html
  • Edit bucketpolicy.json and enter your bucket name on line 9
  • Set the bucket policy as follows:
aws s3api put-bucket-policy --bucket [YOUR-BUCKET-NAME] --policy file://bucketpolicy.json

Compile and package the app for deployment to S3:

cd my-destination-app
npm run build

The distributables will be in the /build folder. Change directory into the build folder

cd build

Sync the contents to s3:

aws s3 sync . s3://[YOUR-BUCKET-NAME]/

Step 6: Test!

Bring up the S3 console. Goto Static website Hosting and click the link or type this in your browser: http://[yourbucketname].s3-website.[region].amazonaws.com

Upload screenshot

Test AppSync realtime capabilities

AppSync uses WebSockets to provide realtime data sync. Try adding a new destination through a Mutation and watch the results populate in realtime:

Goto the AppSync Console, click the Queries section and run the following mutation:

mutation addDestination{
addDestination(
description:"Space Needle"
    city: "Seattle"
    state: "Washington"
    zip: "98109"
){
    __typename
    id
    description
    city
    state
    zip
    conditions{
    __typename
    maxTemp
    minTemp
    current
    description
    }
}
}

You should see the new Space Needle destination populate in your browser:

Upload screenshot

License Summary

This sample code is made available under a modified MIT license. See the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].