Serverless with Mama J — Why Serverless
The article discusses the concept of serverless computing through a conversation between the author and his mother, Mama J. It explains the fundamental role of servers in delivering web content and how clients interact with these servers. The piece aims to simplify the understanding of serverless technology for beginners and those curious about the topic.
- ▪Serverless computing still relies on servers to function.
- ▪A client, such as a web browser or an app, sends requests to the server and displays the returned information.
- ▪Business logic is crucial as it personalizes the user experience by determining what content to show based on user behavior.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2745619) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Eric D Johnson for AWS Posted on May 22 • Originally published at builder.aws.com Serverless with Mama J — Why Serverless #serverless #lambda #aws #beginners If you ever want to test how well you really understand something, try explaining it to your mom. That's exactly what I got to do with serverless. My mom has been my biggest fan and supporter my entire technical career.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).