Skip to content

Instantly share code, notes, and snippets.

@JoshuaCaputo
Forked from homam/AWS_S3_File_Upload.js
Last active June 29, 2018 05:58
Show Gist options
  • Save JoshuaCaputo/4a3e833ae61b7c9dd36b36b88ed7e67d to your computer and use it in GitHub Desktop.
Save JoshuaCaputo/4a3e833ae61b7c9dd36b36b88ed7e67d to your computer and use it in GitHub Desktop.
How to upload files to AWS S3 with NodeJS SDK
var AWS = require("aws-sdk");
var fs = require('fs');
s3 = new AWS.S3();
// For dev purposes only
AWS.config.update({ accessKeyId: '...', secretAccessKey: '...' });
// Read in the file, convert it to base64, store to S3
fs.readFile('del.txt', function (err, data) {
if (err) { throw err; }
var base64data = new Buffer(data, 'binary');
s3.createBucket({Bucket: 'malgate-bucket-dev'}, function(err, data) {
var data = {Bucket: 'malgate-bucket-dev', Key: 'spiral.json', Body: base64data};
s3.putObject(data, function(err,data) {
if(err) return console.log(err);
console.log("Successfully uploaded data to myBucket/myKey");
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment