Skip to content

Commit 01009b0

Browse files
committed
docs: updated docs.
1 parent 337a6ec commit 01009b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Demostrate how to use the popular Node web framework Express.js to deploy a Serv
44

55
## Getting Started
66

7-
We'll install the `serverless-http` framework
7+
Install the `serverless-http` framework
88

99
```sh
1010
$ npm install --save express serverless-http
1111
```
1212

13-
The `serverless-http` package is a handy piece of middleware that handles the interface between your Node.js application and the specifics of API Gateway.
13+
The `serverless-http` package is a middleware that handles the interface between Node.js express application and the specifics of API Gateway.
1414

1515
Let's create an index.js file that has our application code:
1616

@@ -28,7 +28,7 @@ app.get('/', function (req, res) {
2828
module.exports.handler = serverless(app);
2929
```
3030

31-
To get this application deployed, let's create a `serverless.yml` in our working directory:
31+
To get this application deployed, let's create a `serverless.yml`
3232

3333
```yml
3434
# serverless.yml
@@ -41,6 +41,6 @@ functions:
4141
- http: 'ANY {proxy+}'
4242
```
4343
44-
This is a pretty basic configuration. We've created one function, app, which uses the exported handler from our index.js file. Finally, it's configured with some HTTP triggers.
44+
We've created one function, app, which uses the exported handler from our index.js file. Finally, it's configured with some HTTP triggers.
4545
4646
We've used a very broad path matching so that all requests on this domain are routed to this function. All of the HTTP routing logic will be done inside the Express application.

0 commit comments

Comments
 (0)