Skip to content

Tag: amazon-web-services

JavaScript vs Node.js

I have simple “to-do” application written in JavaScript and HTML. I don’t even have CSS file, just have bit of in-line style in index.html file where I have linked my JavaScript file. No database or any other stuff needed. Simple app using vanilla JavaScript and HTML. I have AWS free tier ac…

Format of S3 pre-signed URLs

I’m trying to create an S3 pre-signed URL in my JavaScript code using: After executing, my console log shows: The URL is https://myBucketName.s3.amazonaws.com/myAudioFile.mp3… but I think it should be showing: The URL is https://s3.amazonaws.com/myBucketName/myAudioFile.mp3… Why would it pla…