Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,21 @@ included and loaded automatically if you use the AWS SDK v2.

## Building

To build the layer and sample applications, in this `nodejs` folder, run
To build the layer and sample applications in this `nodejs` folder:

First install dependencies:

```
npm install
```

This will download all dependencies and compile all code. The layer zip file will be present at `./packages/layer/build/layer.zip`.
Then build the project:

```
npm run build
```

You'll find the generated layer zip file at `./packages/layer/build/layer.zip`.

## Sample applications

Expand Down
Loading