slahiff / file-upload-api

0 stars 0 forks source link

Connect to AWS #1

Open slahiff opened 4 years ago

slahiff commented 4 years ago
slahiff commented 4 years ago

We googled and found this link:

One of the steps talked about AWS' SDK (Software Development Kit): https://aws.amazon.com/developers/getting-started/nodejs/

Installed the npm package aws-sdk: https://www.npmjs.com/package/aws-sdk

slahiff commented 4 years ago

Not sure if this is 100% complete, but we are able to connect with the AWS SDK and log out an instance of the s3 service module:

const AWS = require('aws-sdk') const s3 = new AWS.S3() console.log(s3)