I am learning how to use aws-sdk version 3. AWS document says that to import the modular package from version 3 we have to use below command:
yarn add @aws-sdk/client-dynamodb
I do not understand this yarn command, because my understanding is that @ is a special character and has to be used to specify version of a specific package e.g. yarn add packagename@version
. Can we have also package name starting from @?
Also when I run the command yarn add @aws-sdk/client-dynamodb
, I get by default version 3.3.0. How can I specify a specific version (e.g. 3.0.0) in the above command.
In yarn registry the latest version yarn add aws-sdk
is 2.8. So does this mean that there is no way to add full package of aws-sdk v3, and only way is to go module by module?