From 7fc80b4b34f0b85a98c5cbb289aa5123c04a60aa Mon Sep 17 00:00:00 2001 From: Kyle Laker Date: Sat, 14 Jan 2023 21:08:24 -0500 Subject: [PATCH] fix: Getting Started lists the wrong minimum Node.js version The REAMDE from the [CDK Repo](https://github.com/aws/aws-cdk) correctly lists the required versions as v14.15.0 or newer. Because v14.15.0 is newer than any of the incompatible v13.x versions, that warning can also be removed. --- v2/getting_started.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/v2/getting_started.md b/v2/getting_started.md index dde955e..655102e 100644 --- a/v2/getting_started.md +++ b/v2/getting_started.md @@ -200,10 +200,7 @@ TypeScript was the first language supported by the AWS CDK, and much AWS CDK exa Here's what you need to install to use the AWS CDK\. -All AWS CDK developers, even those working in Python, Java, or C\#, need [Node\.js](https://nodejs.org/en/download/) 10\.13\.0 or later\. All supported languages use the same backend, which runs on Node\.js\. We recommend a version in [active long\-term support](https://nodejs.org/en/about/releases/)\. Your organization may have a different recommendation\. - -**Important** -Node\.js versions 13\.0\.0 through 13\.6\.0 are not compatible with the AWS CDK due to compatibility issues with its dependencies\. +All AWS CDK developers, even those working in Python, Java, or C\#, need [Node\.js](https://nodejs.org/en/download/) 14\.15\.0 or later\. All supported languages use the same backend, which runs on Node\.js\. We recommend a version in [active long\-term support](https://nodejs.org/en/about/releases/)\. Your organization may have a different recommendation\. You must configure your workstation with your credentials and an AWS Region, if you have not already done so\. If you have the AWS CLI installed, we recommend running the following command: @@ -352,4 +349,4 @@ Where do you go now that you've dipped your toes in the AWS CDK? + Dig deeper into concepts like [Environments](environments.md), [Assets](assets.md), [Bootstrapping](bootstrapping.md), [Permissions](permissions.md), [Runtime context](context.md), [Parameters](parameters.md), and [Abstractions and escape hatches](cfn_layer.md)\. + Explore [Examples](https://github.com/aws-samples/aws-cdk-examples) of using the AWS CDK\. -The AWS CDK is an open\-source project\. Want to [contribute](https://github.com/aws/aws-cdk)? \ No newline at end of file +The AWS CDK is an open\-source project\. Want to [contribute](https://github.com/aws/aws-cdk)?