File tree 1 file changed +1
-28
lines changed
1 file changed +1
-28
lines changed Original file line number Diff line number Diff line change 1
- # Stackery Hello World - Node.js 8
1
+ # Stackery React Front End, Serverless REST API backend
2
2
3
- This is a sample template for a serverless AWS Lambda application, written in Node.js.
4
-
5
- This application contains two Lambda Functions. The getWelcomePage function
6
- responds to web request events from an API Gateway endpoint. The logErrors
7
- function processes a centralized stream of all Lambda errors within this app.
8
-
9
- The application architecture is defined in template.yaml, a Serverless
10
- Application Model (SAM) template which can be managed through the Stackery UI
11
- at app.stackery.io.
12
-
13
- Here is an overview of the files:
14
-
15
- ``` bash
16
- .
17
- ├── README.md < -- This README file
18
- ├── src < -- Source code dir for all AWS Lambda functions
19
- │ ├── getWelcomePage < -- Source code dir for getWelcomePage function
20
- │ │ ├── README.md < -- Function-specific README
21
- │ │ ├── index.js < -- Lambda function code
22
- │ │ ├── package.json < -- NodeJS dependencies
23
- │ │ └── welcome.html < -- HTML welcome page returned by Lambda function
24
- │ └── logErrors < -- Source code dir for logErrors function
25
- │ ├── README.md < -- Function-specific README
26
- │ ├── index.js < -- Lambda function code
27
- │ └── package.json < -- NodeJS dependencies
28
- └── template.yaml < -- SAM infrastructure-as-code template
29
- ```
30
3
You can’t perform that action at this time.
0 commit comments