- Madhu
What is Serverless?
What’s so special about it?
use cases
Demo
- JavaScript Developer @ Imaginea Tech
- Angular, Vue.js, Node.js
- Opensource contributer
github: madhusudhand
twitter: madhudollu
There are Servers
Run code without provisioning
or managing servers
zero administration*
API
Method
getUsers( )
endpint
/users
Operating System
VM
Runtime
Load balancers
Configurations
...
Cloud providers
AWS Lambda
Google Cloud functions
Azure functions
Pay for what you use
Scaling
Easier / Green deployments
Vendor lock-in
Statelessness
Startup latency
No Long running functions
caching
serverless
shep
AWS Lambda
&
Node.js
exports.handler = (event, context, callback) => {
// TODO implement
callback(null, 'Hello from Lambda');
};