-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.js
76 lines (68 loc) · 1.68 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict'
const BbPromise = require('bluebird')
const run = require('./lib/run')
const serve = require('./lib/serve')
class Simulate {
constructor(serverless, options) {
this.serverless = serverless
this.options = options
Object.assign(
this,
run,
serve
)
this.commands = {
simulate: {
usage: 'Simulate λ locally',
lifecycleEvents: [
'invoke',
],
options: {
path: {
usage: 'Path to handlers directory',
shortcut: 'i',
},
},
commands: {
invoke: {
usage: 'Run a λ function locally',
lifecycleEvents: [
'invoke',
],
options: {
function: {
usage: 'Name of the function',
shortcut: 'f',
required: true,
},
path: {
usage: 'Path to JSON file holding input data',
shortcut: 'p',
},
},
},
serve: {
usage: 'Simulate the API Gateway and serves λ locally',
lifecycleEvents: [
'serve',
],
options: {
port: {
usage: 'Port to listen on. Default: 3000',
shortcut: 'p',
},
},
},
},
},
}
this.hooks = {
'simulate:invoke:invoke': () => BbPromise.bind(this)
.then(this.run)
.then(out => this.serverless.cli.consoleLog(out)),
'simulate:serve:serve': () => BbPromise.bind(this)
.then(this.serve),
}
}
}
module.exports = Simulate