-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·224 lines (208 loc) · 5.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#! /usr/bin/env node
const args = process.argv.slice(2);
if (args.length !== 1) {
console.log("Usage: create-aws-serverless-app <project-name>");
process.exit(1);
}
const appName = args[0];
console.log("Create AWS Serverless App");
console.log(`App Name: ${appName}`);
const execSync = require("child_process").execSync;
const fs = require("fs");
const webpackConfig = `const path = require('path');
const slsw = require('serverless-webpack');
const { IgnorePlugin } = require('webpack');
module.exports = {
mode: 'production',
entry: slsw.lib.entries,
resolve: {
extensions: ['.js', '.json', '.ts', '.tsx'],
},
externals: [
{
'aws-sdk': 'commonjs aws-sdk',
'@google-cloud/storage': 'commonjs @google-cloud/storage',
},
],
output: {
libraryTarget: 'commonjs',
path: path.join(__dirname, '.webpack'),
filename: '[name].js',
},
optimization: {
// Webpack uglify can break mysqljs.
// https://github.com/mysqljs/mysql/issues/1548
minimize: false,
},
plugins: [
new IgnorePlugin(/^encoding$/, /node-fetch/)
],
target: 'node',
module: {
rules: [
{
test: /\\.ts(x?)$/,
use: [
{
loader: 'ts-loader',
},
],
},
],
noParse: /\\/node_modules\\/encoding\\/lib\\/iconv-loader\\.js$/,
},
};
`;
const serverlessConfig = `service: ${appName}
provider:
name: aws
runtime: nodejs16.x
versionFunctions: false
stage: \${env:STAGE}
region: ap-northeast-2
iamRoleStatements:
- Effect: 'Allow'
Action:
- 's3:*'
- 'sqs:*'
Resource: '*'
custom:
prune:
automatic: true
number: 30
serverless-offline:
noPrependStageInUrl: true
lambdaPort: null
logRetentionInDays: 14
plugins:
- serverless-webpack
- serverless-offline
- serverless-prune-plugin
functions:
helloWorld:
handler: src/handler.helloWorld
memorySize: 128
timeout: 3
events:
- http:
path: hello-world
method: get
cors:
origin: '*'
headers:
- Content-Type
- Content-Length
- X-Version
allowCredentials: true
environment:
STAGE: \${env:STAGE}
`;
const packageConfig = `{
"name": "${appName}",
"scripts": {
"clean": "rm -rf node_modules && yarn",
"start": "sls offline --host 0.0.0.0 --noTimeout",
"deploy": "SLS_DEBUG=* sls deploy"
},
"dependencies": {
"axios": "^1.4.0",
"luxon": "^1.8.2",
"serverless-aws-middleware": "^0.0.2"
},
"devDependencies": {
"@types/luxon": "^1.4.1",
"@types/node": "^14.16.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.2",
"serverless": "3.22.0",
"serverless-offline": "^10.0.2",
"serverless-prune-plugin": "^2.0.1",
"serverless-webpack": "^5.9.0",
"ts-loader": "^5.3.1",
"typescript": "4.3.5",
"webpack": "^4.27.1"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"**/graceful-fs": "4.2.8"
}
}
`;
const tsConfig = `{
"compilerOptions": {
"sourceMap": true,
"target": "es5",
"outDir": ".build",
"moduleResolution": "node",
"lib": ["es2015", "esnext", "dom"],
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"resolveJsonModule": true
},
"exclude": ["node_modules/**/*", ".build/"]
}
`;
const handler = `import { handler } from './middleware';
export const helloWorld = handler(
async ({ request, aux }): Promise<{msg: string}> => {
const { db, tracer, logger } = aux;
console.log('hello world!');
return { msg: 'hello world!' };
},
);
`;
const middleware = `import {
AWSPluginAux,
LoggerPluginAux,
LogLevel,
middleware,
TracerPluginAux,
} from 'serverless-aws-middleware';
export type Aux = AWSPluginAux &
TracerPluginAux &
LoggerPluginAux;
export const handler = middleware.build<Aux>([
middleware.aws({
config: undefined,
}),
middleware.trace({
route: 'es:index/event',
queueName: 'event_queue',
system: 'AppName',
awsConfig: undefined,
region: 'ap-northeast-2',
}),
middleware.logger({
name: __filename,
level: LogLevel.Stupid,
}),
]);
`;
const gitIgnore = "node_modules";
execSync(`mkdir ${appName}`);
execSync(`cd ${appName} && git init`);
fs.writeFileSync(`./${appName}/webpack.config.js`, webpackConfig, "utf-8");
fs.writeFileSync(`./${appName}/serverless.yml`, serverlessConfig, "utf-8");
fs.writeFileSync(`./${appName}/package.json`, packageConfig, "utf-8");
fs.writeFileSync(`./${appName}/tsconfig.json`, tsConfig, "utf-8");
execSync(`mkdir ${appName}/src`);
fs.writeFileSync(`./${appName}/src/handler.ts`, handler, "utf-8");
fs.writeFileSync(`./${appName}/src/middleware.ts`, middleware, "utf-8");
fs.writeFileSync(`./${appName}/.gitignore`, gitIgnore, "utf-8");
execSync(`cd ${appName} && yarn`, { stdio: "inherit" });
console.log("============================");
console.log("[Setting Complete!]");
console.log("============================");
process.exit(0);