-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathhandler.ts
35 lines (32 loc) · 854 Bytes
/
handler.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function addNumbers(numbers: Array<number>) {
console.log("Adding Numbers")
console.log("Numbers to add: " + numbers)
return numbers.reduce((acc,cv) => acc + cv)
}
module.exports.add = async (event: any) => {
if (event.body) {
console.log("Running on AWS")
let body = JSON.parse(event.body)
var numbers = body.numbers
} else if (event.numbers) {
console.log("Running Locally")
var numbers = event.numbers
} else {
console.log ("ERROR IN EVENT")
}
const response = {
statusCode: 200,
body: JSON.stringify({result: `${addNumbers(numbers)}`})
}
console.log("Resonse: ")
console.log(response)
return response
}
module.exports.hello = async (event: any) => {
const response = {
statusCode: 200,
body: JSON.stringify({ message: "Hello!" })
}
console.log({ response })
return response
}