How to install via NPM? #3688
-
Describe the issueWhen I have this in my package.json : When I have this in my package.json : I get : How do you install version 3.27.0 of the aws sdk as required here: Linkshttps://github.com/aws/aws-sdk-js-v3/blob/main/README.md |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @ariv803 , The V3 SDK is modularized. That means you no longer need to For example - if you want to use S3, you init your npm project and then Let me know if that helps. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @ariv803 ,
The V3 SDK is modularized. That means you no longer need to
npm install aws-sdk
(reference the entire V2 SDK), but rather install modules individually, based on your needs.For example - if you want to use S3, you init your npm project and then
npm install @aws-sdk/client-s3
Let me know if that helps.