Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Serverless for (JavaScript) Developers

Serverless for (JavaScript) Developers

London JavaScript Community, February 7th, 2017

Serverless architectures simplify operations and maintenance of production applications, abstracting from the underlining infrastructure and OS. But what about development?

We are now two years in with tools such as AWS Lambda and what are the best practices to share from a development perspective?

In this session you will see some of the key points that can empower a JavaScript developer!

Danilo Poccia

February 07, 2017
Tweet

More Decks by Danilo Poccia

Other Decks in Programming

Transcript

  1. Danilo Poccia With AWS Lambda, you write your code and

    upload it to the AWS cloud. AWS Lambda responds to the events triggered by your application or your users, and auto- matically manages the underlying computer resources for you. Back-end tasks like analyzing a new document or processing requests from a mobile app are easy to implement. Your ap- plication is divided into small functions, leading naturally to a reactive architecture and the adoption of microservices. AWS Lambda in Action is an example-driven tutorial that teaches you how to build applications that use an event-driven approach on the back-end. Starting with an overview of AWS Lambda, the book moves on to show you common examples and patterns that you can use to call Lambda functions from a web page or a mobile app. The second part of the book puts these smaller examples together to build larger applications. By the end, you’ll be ready to create applications that take advantage of the high availability, security, performance, and scalability of AWS. What’s Inside • Create a simple API • Create an event-driven media sharing application • Secure access to your application in the cloud • Use functions from different clients like web pages or mobile apps • Connect your application with external services Requires basic knowledge of JavaScript. Some examples are also provided in Python. No AWS experience is assumed. Danilo Poccia is a technical evangelist at Amazon Web Services and a frequent speaker at public events and workshops. To download their free eBook in PDF, ePub, and Kindle formats, owners of this book should visit www.manning.com/books/aws-lambda-in-action $49.99 / Can $57.99 [INCLUDING eBOOK] AWS Lambda IN ACTION SOFTWARE DEVELOPMENT/CLOUD Danilo Poccia M A N N I N G AWS Lambda IN ACTION MANNING “Clear and concise … the code samples are as well structured as the writing.” —From the Foreword by James Governor, RedMonk “A superb guide to an important aspect of AWS.” —Ben Leibert, VillageReach “Step-by-step examples and clear prose make this the go-to book for AWS Lambda!.” —Dan Kacenjar, Wolters Kluwer “Like Lambda itself, this book is easy to follow, concise, and very functional.” —Christopher Haupt, New Relic M A N N I N G SEE INSERT Danilo Poccia FOREWORD BY James Governor Event-driven serverless applications
  2. Data Persistence Business Logic Client Application Function2 Database Files Function1

    Function3 invoke event trigger event trigger read/write
  3. Data Persistence Business Logic Client Application Functions Functions Functions Repositories

    Repositories Repositories API read/write event trigger read/write
  4. Data Persistence Business Logic Client Application Functions Functions Functions API

    Gateway Repositories Repositories Repositories API read/write event trigger read/write
  5. https://github.com/awslabs/aws-serverless-auth-reference-app Serverless reference app and backend API, showcasing authentication and

    authorization patterns using Amazon Cognito, Amazon API Gateway, AWS Lambda, and AWS IAM
  6. https://github.com/awslabs/aws-serverless-express This library enables you to utilize AWS Lambda and

    Amazon API Gateway to respond to web and API requests using your existing Node.js application framework
  7. function processList(itemList, context) { var item = itemList.shift(); processItem(item, ()

    => { if (itemList.length === 0) { console.log('Finished'); } else if (context.getRemainingTimeInMillis() > TIME_THRESHOLD) { // Process remaning items processList(itemList, context); } else { console.log('Not finished'); // Time is running out, // invoke self asynchrounously to process remaning items invokeSelf(itemList, context); } }); }
  8. </> Serverless Continuous Integration and Deployment GitHub Amazon S3 AWS

    CodeCommit AWS CodeBuild AWS CodeBuild third-party tools AWS CloudFormation Commit Build Test Deploy to Prod AWS CodePipeline + SAM
  9. Name Email Create New User Submit Check the “Name” syntax

    is right (only letters and spaces) Check the “Email” syntax is right ([email protected]) Create the new user using provided Name and Email User Interface Actions
  10. Name Email Create New User Submit Check the “Name” syntax

    is right (only letters and spaces) Check the “Email” syntax is right ([email protected]) Create the new user using provided Name and Email User Interface Actions Observers Target Action
  11. Generate thumbnails Keep another database in sync Process streaming data

    Services Functions Platform Target Action Kinesis Stream DynamoDB Table S3 Bucket
  12. area = length x width Procedural Programming “This is a

    function!” Reactive Programming “This is data binding!”
  13. A B Event-Driven Design For Services ”Service A triggers B"

    or better ”Service B is caused by A"
  14. A B C D E F ? ? What is

    causing services E and F?
  15. A B C D E F New services (E, F)

    are triggered caused by C
  16. A B C D E F It can be cyclic

    Think of acknowledgements
  17. Who I need to notify (output events) What I need

    to know (input events) What I need to do (internal logic) 1 2 3 B
  18. Monolith Service Service μ μ μ space (distribution, mobility) time

    (concurrency, latency) μ μ μ μ “Distributed in Time and Space” [Jonas Bonér]
  19. A C I D tomic onsistent solated urable A C

    I D ssociative ommutative dempotent istributed ACID 2.0