Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update nodejs readme with missing step #1650

Merged
merged 2 commits into from
Jan 13, 2025
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