appcore-s3

Amazon S3 file upload for appcore.

Usage no npm install needed!

<script type="module">
  import appcoreS3 from 'https://cdn.skypack.dev/appcore-s3';
</script>

README

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