From f1fd9f2e9bb599f53d5a995f51b1ac355042ce96 Mon Sep 17 00:00:00 2001 From: joeduffy Date: Mon, 11 Mar 2019 08:02:41 -0700 Subject: [PATCH] Clarify some prerequisites --- aws-ts-s3-lambda-copyzip/README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/aws-ts-s3-lambda-copyzip/README.md b/aws-ts-s3-lambda-copyzip/README.md index 0fb139705..aea41bdf8 100644 --- a/aws-ts-s3-lambda-copyzip/README.md +++ b/aws-ts-s3-lambda-copyzip/README.md @@ -16,6 +16,7 @@ To deploy your new serverless application, follow the below steps. ### Prerequisites +0. [Ensure you have Node.js](https://nodejs.org/en/download/) 1. [Install Pulumi](https://pulumi.io/install) 2. [Configure AWS Credentials](https://pulumi.io/install/aws.html) @@ -23,13 +24,19 @@ To deploy your new serverless application, follow the below steps. After cloning this repo, from this working directory, run these commands: -1. Create a new stack, which is an isolated environment for this example: +0. Install Node.js dependencies, either using NPM or Yarn: + + ```bash + $ npm install + ``` + +1. Create a new Pulumi stack, which is an isolated environment for this example: ```bash $ pulumi stack init ``` - This will ask you to provide a name; `dev` is a fine name to begin with. + This will ask you to give your stack a name; `dev` is a fine name to begin with. 2. Configure the AWS region for this program -- any valid AWS region will do: