-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
33 lines (29 loc) · 825 Bytes
/
index.js
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
require('dotenv').config()
const lambdaLocal = require('lambda-local');
const express = require('express');
const cors = require('cors');
const app = express();
app.use(cors())
app.use(express.json())
app.use(express.urlencoded({extended:true}))
const port = process.env.SERVER_PORT || 8080;
const timeoutMs = process.env.LAMBDA_TIMEOUT || 3000;
const lambdaPath = "../caminho/index.js"
let event = {}
app.get('/', (req, res, next)=>{
lambdaLocal.execute({
event,
lambdaPath,
timeoutMs,
callback: function(err, data) {
if(err){
next(err)
}
res.json(JSON.parse(data.body))
},
clientContext: JSON.stringify({clientId: 'xxxx'})
});
});
app.listen(port, ()=>{
console.log(`Server on http://localhost:${port}`)
});