Skip to content

DynamoDB

James A Henriquez edited this page Mar 18, 2024 · 15 revisions

Getting set up

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 do you should have a file that is located at (for windows) 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>