UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

10 lines (7 loc) 199 B
'use strict'; function hello(params) { const name = params.name || 'World'; console.log('log', { payload: `Hello, ${name}` }); return { payload: `Hello, ${name}!` }; } exports.hello = hello;