-
Notifications
You must be signed in to change notification settings - Fork 0
DynamoDB
James A Henriquez edited this page Mar 18, 2024
·
15 revisions
AWS SDK is a software development kit that we will be using integrated with our Vue.js, to make sure that we have it installed we need to use the command:
npm install aws-sdk
You may also need another module called UUID (Universal Unique Identifier), install using the command:
npm install uuid
Next you must make sure you have your AWS credentials set up. If you are set up and on a Windows OS you should have a file that is located at the path C:\Users\USER_NAME.aws\credentials. The file should contain lines that look like this
aws_access_key_id = <YOUR_ACCESS_KEY_ID>
aws_secret_access_key = <YOUR_SECRET_ACCESS_KEY>