Skip to content

BeneathTheInk/appcore-s3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Amazon S3 Upload Adaptor for Appcore Files

This is an S3 upload adaptor for Appcore files. It allows file data to be saved at any arbitrary path in an S3 bucket.

app.use(require("appcore-s3"));

// later
app.ready(function() {
    app.files.upload(fileData, {
        filename: "myfile.jpg",
        s3path: "/user123/myfile.jpg" // the path in the bucket, required
    }, function(err, res) {
        res.url; // -> The full S3 url to the file
    });
});

The following application config keys need to be set:

  • s3.key - S3 access key
  • s3.secret - S3 secret token
  • s3.bucket - S3 bucket name

About

Amazon S3 file upload for Appcore

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published